Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.1.1 #69

Merged
merged 1 commit into from
Dec 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ exclude = [
]

[workspace.package]
version = "0.1.0"
version = "0.1.1"
edition = "2021"
license = "bzip2-1.0.6"
repository = "https://github.com/trifectatechfoundation/libbzip2-rs"
homepage = "https://github.com/trifectatechfoundation/libbzip2-rs"
readme = "./README.md"
description = "a drop-in compatible rust bzip2 implementation"
description = "a drop-in compatible rust bzip2 implementation"
publish = true
rust-version = "1.82" # MSRV

Expand All @@ -24,7 +24,7 @@ libbz2-rs-sys = { path = "libbz2-rs-sys/", default-features = false }

[package]
name = "libbzip2-rs"
readme.workspace = true
readme.workspace = true
description.workspace = true
version.workspace = true
edition.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions libbz2-rs-sys-cdylib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libbz2-rs-sys-cdylib"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
license = "bzip2-1.0.6"
repository = "https://github.com/trifectatechfoundation/libbzip2-rs"
Expand All @@ -23,7 +23,7 @@ custom-prefix = ["libbz2-rs-sys/custom-prefix"] # use the LIBBZ2_RS_SYS_PREFIX t
capi = []

[dependencies]
libbz2-rs-sys = { version = "0.1.0", path = "../libbz2-rs-sys", default-features = false, features = ["c-allocator"] }
libbz2-rs-sys = { version = "0.1.1", path = "../libbz2-rs-sys", default-features = false, features = ["c-allocator"] }
libc = "0.2"

[package.metadata.capi.library]
Expand Down
1 change: 1 addition & 0 deletions libbz2-rs-sys/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ fn handle_assert_failure(errcode: c_int) -> ! {
// Stash the assertion code for the panic handler in the cdylib to pass to bz_internal_error.
// Using relaxed ordering as this will be accessed on the same thread.
#[cfg(not(feature = "std"))]
#[allow(clippy::unnecessary_cast)]
ASSERT_CODE.store(errcode as i32, Ordering::Relaxed);
#[cfg(not(feature = "std"))]
panic!("{}", AssertFail(errcode));
Expand Down
14 changes: 7 additions & 7 deletions test-libbz2-rs-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "test-libbz2-rs-sys"
readme = "README.md"
# description.workspace = true
# version.workspace = true
description = "testing libbz2-rs-sys"
version.workspace = true
edition.workspace = true
# license.workspace = true
# repository.workspace = true
# homepage.workspace = true
# publish.workspace = true
# rust-version.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
rust-version.workspace = true
publish = false

[dependencies]
bzip2-sys = { version = "0.1.11", features = ["static"] }
Expand Down
Loading