Skip to content

Commit

Permalink
Fix Rust lib and CLI versions (#793)
Browse files Browse the repository at this point in the history
I forgot to bump them since the last release.
  • Loading branch information
ia0 authored Nov 6, 2024
1 parent c6d2257 commit bf69c8e
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 8 deletions.
11 changes: 10 additions & 1 deletion rust/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
# Changelog

## 0.1.0-rc.1
## 0.1.0-rc.2-dev

### Minor

- Exit with non-zero code if at least one error was encountered (fixes #780)

### Patch

- Update dependencies

## 0.1.0-rc.1

### Minor

- Print model version with `--version`
- Change model from `standard_v2_0` to `standard_v2_1`

Expand Down
4 changes: 2 additions & 2 deletions rust/cli/Cargo.lock

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

4 changes: 2 additions & 2 deletions rust/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "magika-cli"
version = "0.1.0-rc.1"
version = "0.1.0-rc.2-dev"
authors = ["Magika Developers <[email protected]>"]
license = "Apache-2.0"
edition = "2021"
Expand All @@ -20,7 +20,7 @@ anyhow = "1.0.86"
async-channel = "2.3.1"
clap = { version = "4.5.9", features = ["cargo", "derive", "string"] }
colored = "2.1.0"
magika = { version = "=0.1.0-rc.1", path = "../lib", features = ["serde"] }
magika = { version = "=0.1.0-rc.2-dev", path = "../lib", features = ["serde"] }
num_cpus = "1.16.0"
ort = "2.0.0-rc.8"
serde = { version = "1.0.204", features = ["derive"] }
Expand Down
3 changes: 2 additions & 1 deletion rust/cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,4 +175,5 @@ Options:
```


See the [docs on Magika's output](../../docs/magika_output.md) for more details about the output format.
See the [docs on Magika's output](../../docs/magika_output.md) for more details about the output
format.
6 changes: 6 additions & 0 deletions rust/lib/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.1.0-rc.2-dev

### Patch

- Update dependencies

## 0.1.0-rc.1

### Minor
Expand Down
2 changes: 1 addition & 1 deletion rust/lib/Cargo.lock

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

2 changes: 1 addition & 1 deletion rust/lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "magika"
version = "0.1.0-rc.1"
version = "0.1.0-rc.2-dev"
authors = ["Magika Developers <[email protected]>"]
license = "Apache-2.0"
edition = "2021"
Expand Down

0 comments on commit bf69c8e

Please sign in to comment.