Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Feb 8, 2025
1 parent dd63e36 commit 7cb5c0e
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 9 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.1](https://github.com/danieleades/arithmetic-coding/compare/arithmetic-coding-v0.4.0...arithmetic-coding-v0.4.1) - 2025-02-08

### Other

- *(docs)* update CI badge in readme (#75)
- *(lints)* count string characters directly (#74)
- *(deps)* commit lock file to VCS (#73)
- *(deps)* update thiserror requirement from 1.0.30 to 2.0.3 (#70)
- *(deps)* bump codecov/codecov-action from 4 to 5 (#71)

## [0.4.0](https://github.com/danieleades/arithmetic-coding/compare/arithmetic-coding-v0.3.1...arithmetic-coding-v0.4.0) - 2024-09-12

### Added
Expand Down
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 @@ -21,7 +21,7 @@ pedantic = "warn"
[package]
name = "arithmetic-coding"
description = "fast and flexible arithmetic coding library"
version = "0.4.0"
version = "0.4.1"
edition.workspace = true
license.workspace = true
keywords.workspace = true
Expand All @@ -30,12 +30,12 @@ repository.workspace = true
rust-version.workspace = true

[dependencies]
arithmetic-coding-core = { path = "./arithmetic-coding-core", version = "0.4.0" }
arithmetic-coding-core = { path = "./arithmetic-coding-core", version = "0.4.1" }
bitstream-io = "2.0.0"
thiserror = { workspace = true }

[dev-dependencies]
fenwick-model = { path = "./fenwick-model", version = "0.1.0" }
fenwick-model = { path = "./fenwick-model", version = "0.1.1" }
criterion = "0.5.1"
test-case = "3.0.0"

Expand Down
6 changes: 6 additions & 0 deletions arithmetic-coding-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.1](https://github.com/danieleades/arithmetic-coding/compare/arithmetic-coding-core-v0.4.0...arithmetic-coding-core-v0.4.1) - 2025-02-08

### Other

- update Cargo.toml dependencies

## [0.4.0](https://github.com/danieleades/arithmetic-coding/compare/arithmetic-coding-core-v0.3.0...arithmetic-coding-core-v0.4.0) - 2024-09-12

### Added
Expand Down
2 changes: 1 addition & 1 deletion arithmetic-coding-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "arithmetic-coding-core"
description = "core traits for the 'arithmetic-coding' crate"
version = "0.4.0"
version = "0.4.1"
edition.workspace = true
license.workspace = true
keywords.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions fenwick-model/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.1](https://github.com/danieleades/arithmetic-coding/compare/fenwick-model-v0.1.0...fenwick-model-v0.1.1) - 2025-02-08

### Other

- update Cargo.toml dependencies

## [0.1.0](https://github.com/danieleades/arithmetic-coding/releases/tag/fenwick-model-v0.1.0) - 2024-09-12

### Added
Expand Down
4 changes: 2 additions & 2 deletions fenwick-model/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fenwick-model"
version = "0.1.0"
version = "0.1.1"
edition.workspace = true
description = "fenwick-tree-based test utils for the 'arithmetic-coding' crate"
license.workspace = true
Expand All @@ -16,6 +16,6 @@ repository.workspace = true
rust-version.workspace = true

[dependencies]
arithmetic-coding-core = { path = "../arithmetic-coding-core", version = "0.4.0" }
arithmetic-coding-core = { path = "../arithmetic-coding-core", version = "0.4.1" }
fenwick = "2.0.0"
thiserror = { workspace = true }

0 comments on commit 7cb5c0e

Please sign in to comment.