Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
foresterre committed Jan 19, 2023
1 parent 3aad9b5 commit f0cbdc1
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 26 deletions.
12 changes: 6 additions & 6 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.20.1"
version = "0.21.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.20.0", path = "crates/sic_cli_ops" }
sic_core = { version = "0.20.0", path = "crates/sic_core" }
sic_io = { version = "0.20.0", path = "crates/sic_io" }
sic_image_engine = { version = "0.20.0", path = "crates/sic_image_engine" }
sic_parser = { version = "0.20.0", path = "crates/sic_parser" }
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" }

anyhow = "1"
atty = "0.2.14"
Expand Down
8 changes: 4 additions & 4 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.20.1"
version = "0.21.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,16 +12,16 @@ rust-version = "1.61"


[dependencies]
sic_image_engine = { version = "0.20.0", path = "../sic_image_engine" }
sic_parser = { version = "0.20.0", path = "../sic_parser" }
sic_image_engine = { version = "0.21.0", path = "../sic_image_engine" }
sic_parser = { version = "0.21.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.20.0", path = "../sic_core" }
sic_core = { version = "0.21.0", path = "../sic_core" }
sic_testing = { version = "0.20.0", path = "../sic_testing" }
parameterized = "1.0.1"

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.20.2"
version = "0.21.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
6 changes: 3 additions & 3 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.20.1"
version = "0.21.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.20.0", path = "../sic_core" }
sic_io = { version = "0.20.0", path = "../sic_io" }
sic_core = { version = "0.21.0", path = "../sic_core" }
sic_io = { version = "0.21.0", path = "../sic_io" }

strum = "0.24.1"
strum_macros = "0.24.3"
Expand Down
4 changes: 2 additions & 2 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.20.1"
version = "0.21.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,7 +11,7 @@ edition = "2021"
rust-version = "1.61"

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

thiserror = "1"

Expand Down
6 changes: 3 additions & 3 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.20.1"
version = "0.21.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,8 +11,8 @@ edition = "2021"
rust-version = "1.61"

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

pest = "2.5.3"
pest_derive = "2.5.3"
Expand Down
2 changes: 1 addition & 1 deletion crates/sic_testing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ edition = "2021"
rust-version = "1.61"

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

0 comments on commit f0cbdc1

Please sign in to comment.