Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
foresterre committed Apr 22, 2023
1 parent bf36323 commit f301e3a
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 32 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

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

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sic"
version = "0.21.1"
version = "0.22.0"
authors = ["Martijn Gribnau <garm@ilumeo.com>"]
description = "Accessible image processing and conversion from the terminal (and a front-end for the 'image' crate)."
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -34,11 +34,11 @@ members = [
]

[dependencies]
sic_cli_ops = { version = "0.21.0", path = "crates/sic_cli_ops" }
sic_core = { version = "0.21.0", path = "crates/sic_core" }
sic_io = { version = "0.21.0", path = "crates/sic_io" }
sic_image_engine = { version = "0.21.0", path = "crates/sic_image_engine" }
sic_parser = { version = "0.21.0", path = "crates/sic_parser" }
sic_cli_ops = { version = "0.22.0", path = "crates/sic_cli_ops" }
sic_core = { version = "0.22.0", path = "crates/sic_core" }
sic_io = { version = "0.22.0", path = "crates/sic_io" }
sic_image_engine = { version = "0.22.0", path = "crates/sic_image_engine" }
sic_parser = { version = "0.22.0", path = "crates/sic_parser" }

anyhow = "1"
atty = "0.2.14"
Expand Down
10 changes: 5 additions & 5 deletions crates/sic_cli_ops/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sic_cli_ops"
version = "0.21.0"
version = "0.22.0"
authors = ["Martijn Gribnau <garm@ilumeo.com>"]
description = "Component of the sic cli: parses images operations invoked from the cli."
license = "MIT OR Apache-2.0"
Expand All @@ -12,17 +12,17 @@ rust-version = "1.61"


[dependencies]
sic_image_engine = { version = "0.21.0", path = "../sic_image_engine" }
sic_parser = { version = "0.21.0", path = "../sic_parser" }
sic_image_engine = { version = "0.22.0", path = "../sic_image_engine" }
sic_parser = { version = "0.22.0", path = "../sic_parser" }

clap = "2.34.0"
strum = "0.24.1"
strum_macros = "0.24.3"
thiserror = "1"

[dev-dependencies]
sic_core = { version = "0.21.0", path = "../sic_core" }
sic_testing = { version = "0.20.0", path = "../sic_testing" }
sic_core = { version = "0.22.0", path = "../sic_core" }
sic_testing = { version = "0.22.0", path = "../sic_testing" }
parameterized = "1.0.1"

[features]
Expand Down
2 changes: 1 addition & 1 deletion crates/sic_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sic_core"
version = "0.21.0"
version = "0.22.0"
authors = ["Martijn Gribnau <garm@ilumeo.com>"]
description = "Component of the sic cli: re-exports global dependencies to sub-crates."
license = "MIT OR Apache-2.0"
Expand Down
8 changes: 4 additions & 4 deletions crates/sic_image_engine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sic_image_engine"
version = "0.21.0"
version = "0.22.0"
authors = ["Martijn Gribnau <garm@ilumeo.com>"]
description = "Component of the sic cli: provides abstractions for (the application of) image operations."
license = "MIT OR Apache-2.0"
Expand All @@ -11,8 +11,8 @@ edition = "2021"
rust-version = "1.61"

[dependencies]
sic_core = { version = "0.21.0", path = "../sic_core" }
sic_io = { version = "0.21.0", path = "../sic_io" }
sic_core = { version = "0.22.0", path = "../sic_core" }
sic_io = { version = "0.22.0", path = "../sic_io" }

strum = "0.24.1"
strum_macros = "0.24.3"
Expand All @@ -21,7 +21,7 @@ thiserror = "1"
rayon = "1.7.0"

[dev-dependencies]
sic_testing = { version = "0.20.0", path = "../sic_testing" }
sic_testing = { version = "0.22.0", path = "../sic_testing" }

[features]
imageproc-ops = ["sic_core/imageproc-ops"]
Expand Down
6 changes: 3 additions & 3 deletions crates/sic_io/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sic_io"
version = "0.21.0"
version = "0.22.0"
authors = ["Martijn Gribnau <garm@ilumeo.com>"]
description = "Component of the sic cli: provides accessible i/o around image formats."
license = "MIT OR Apache-2.0"
Expand All @@ -11,10 +11,10 @@ edition = "2021"
rust-version = "1.61"

[dependencies]
sic_core = { version = "0.21.0", path = "../sic_core"}
sic_core = { version = "0.22.0", path = "../sic_core"}

thiserror = "1"

[dev-dependencies]
parameterized = "1.0.1"
sic_testing = { version = "0.20.0", path = "../sic_testing" }
sic_testing = { version = "0.22.0", path = "../sic_testing" }
8 changes: 4 additions & 4 deletions crates/sic_parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sic_parser"
version = "0.21.0"
version = "0.22.0"
authors = ["Martijn Gribnau <garm@ilumeo.com>"]
description = "Component of the sic cli: parser for the image operation script used by sic."
license = "MIT OR Apache-2.0"
Expand All @@ -11,15 +11,15 @@ edition = "2021"
rust-version = "1.61"

[dependencies]
sic_core = { version = "0.21.0", path = "../sic_core"}
sic_image_engine = { version = "0.21.0", path = "../sic_image_engine" }
sic_core = { version = "0.22.0", path = "../sic_core"}
sic_image_engine = { version = "0.22.0", path = "../sic_image_engine" }

pest = "2.5.7"
pest_derive = "2.5.7"
thiserror = "1"

[dev-dependencies]
sic_testing = { version = "0.20.0", path = "../sic_testing" }
sic_testing = { version = "0.22.0", path = "../sic_testing" }
parameterized = "1.0.1"

[features]
Expand Down
4 changes: 2 additions & 2 deletions crates/sic_testing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sic_testing"
version = "0.20.0"
version = "0.22.0"
authors = ["Martijn Gribnau <garm@ilumeo.com>"]
description = "Component of the sic cli: provides commonly used testing operations for sic crates."
license = "MIT OR Apache-2.0"
Expand All @@ -11,5 +11,5 @@ edition = "2021"
rust-version = "1.61"

[dependencies]
sic_core = { version = "0.21.0", path = "../sic_core" }
sic_core = { version = "0.22.0", path = "../sic_core" }
parameterized = "1.0.1"

0 comments on commit f301e3a

Please sign in to comment.