Skip to content

Commit

Permalink
release: 3.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
joshstoik1 committed Jul 26, 2024
2 parents 3679dcf + 5f066df commit 05005e5
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions CREDITS.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Project Dependencies
Package: flaca
Version: 3.1.4
Generated: 2024-07-25 19:10:39 UTC
Version: 3.1.5
Generated: 2024-07-26 04:46:44 UTC

| Package | Version | Author(s) | License |
| ---- | ---- | ---- | ---- |
Expand All @@ -19,7 +19,7 @@
| [dowser](https://github.com/Blobfolio/dowser) | 0.9.2 | [Blobfolio, LLC.](mailto:hello@blobfolio.com) | WTFPL |
| [equivalent](https://github.com/cuviper/equivalent) | 1.0.1 | | Apache-2.0 or MIT |
| [fastrand](https://github.com/smol-rs/fastrand) | 2.1.0 | [Stjepan Glavina](mailto:stjepang@gmail.com) | Apache-2.0 or MIT |
| flapfli | 3.1.4 | [Josh Stoik](mailto:josh@blobfolio.com) | WTFPL |
| flapfli | 3.1.5 | [Josh Stoik](mailto:josh@blobfolio.com) | WTFPL |
| [funty](https://github.com/myrrlyn/funty) | 2.0.0 | [myrrlyn](mailto:self@myrrlyn.dev) | MIT |
| [fyi_msg](https://github.com/Blobfolio/fyi) | 0.13.6 | [Blobfolio, LLC.](mailto:hello@blobfolio.com) | WTFPL |
| [hashbrown](https://github.com/rust-lang/hashbrown) | 0.14.5 | [Amanieu d'Antras](mailto:amanieu@gmail.com) | Apache-2.0 or MIT |
Expand Down
2 changes: 1 addition & 1 deletion flaca/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "flaca"
version = "3.1.4"
version = "3.1.5"
license = "WTFPL"
authors = ["Josh Stoik <josh@blobfolio.com>"]
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion flapfli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "flapfli"
version = "3.1.4"
version = "3.1.5"
license = "WTFPL"
authors = ["Josh Stoik <josh@blobfolio.com>"]
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion flapfli/src/ffi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ pub(crate) unsafe fn flapfli_allocate(ptr: *mut u8, new_size: NonZeroUsize) -> N
// Make sure we actually achieved allocation; this shouldn't fail, but
// might?
let real_ptr = NonNull::new(real_ptr)
.unwrap_or_else(|| handle_alloc_error(layout_for(new_size)));
.unwrap_or_else(#[inline(never)] || handle_alloc_error(layout_for(new_size)));

// Safety: the layout is aligned to usize.
real_ptr.cast::<usize>().write(new_size.get()); // Write the length.
Expand Down
10 changes: 5 additions & 5 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ doc_dir := justfile_directory() + "/doc"
release_dir := justfile_directory() + "/release"
skel_dir := justfile_directory() + "/skel"

#export RUSTFLAGS := "-Ctarget-cpu=x86-64-v3 -Cllvm-args=--cost-kind=throughput -Clinker-plugin-lto -Clink-arg=-fuse-ld=lld"
#export CC := "clang"
#export CXX := "clang++"
#export CFLAGS := "-Wall -Wextra -flto -march=x86-64-v3"
#export CXXFLAGS := "-Wall -Wextra -flto -march=x86-64-v3"
export RUSTFLAGS := "-Ctarget-cpu=x86-64-v3 -Cllvm-args=--cost-kind=throughput -Clinker-plugin-lto -Clink-arg=-fuse-ld=lld"
export CC := "clang"
export CXX := "clang++"
export CFLAGS := "-Wall -Wextra -flto -march=x86-64-v3"
export CXXFLAGS := "-Wall -Wextra -flto -march=x86-64-v3"



Expand Down
4 changes: 2 additions & 2 deletions release/man/flaca.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.TH "FLACA" "1" "July 2024" "Flaca v3.1.4" "User Commands"
.TH "FLACA" "1" "July 2024" "Flaca v3.1.5" "User Commands"
.SH NAME
Flaca \- Manual page for flaca v3.1.4.
Flaca \- Manual page for flaca v3.1.5.
.SH DESCRIPTION
Brute\-force, lossless JPEG and PNG compression.
.SS USAGE:
Expand Down

0 comments on commit 05005e5

Please sign in to comment.