diff --git a/CHANGELOG.md b/CHANGELOG.md index a73c9e0..f3a3811 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,9 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - +## [0.2.0] - 2023-04-10 ### Added @@ -23,5 +21,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial `depit` library and binary implementations -[unreleased]: https://github.com/rvolosatovs/depit/compare/v0.1.0...HEAD +[unreleased]: https://github.com/rvolosatovs/depit/compare/v0.2.0...HEAD +[0.2.0]: https://github.com/rvolosatovs/depit/releases/tag/v0.2.0 [0.1.0]: https://github.com/rvolosatovs/depit/releases/tag/v0.1.0 diff --git a/Cargo.lock b/Cargo.lock index e0d98a8..9e979e1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -414,7 +414,7 @@ dependencies = [ [[package]] name = "depit" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "async-compression", @@ -437,7 +437,7 @@ dependencies = [ [[package]] name = "depit-cli" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "build-test", diff --git a/Cargo.toml b/Cargo.toml index 28be5f3..0bb5a3e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "depit-cli" -version = "0.1.0" +version = "0.2.0" description = "WIT dependency manager" authors.workspace = true @@ -41,7 +41,7 @@ async-tar = { version = "0.4", default-features = false } async-trait = { version = "0.1", default-features = false } camino = { version = "1", default-features = false } clap = { version = "4", default-features = false } -depit = { path = "./crates/depit", version = "0.1" } +depit = { path = "./crates/depit", version = "0.2" } directories = { version = "5", default-features = false } futures = { version = "0.3", default-features = false } build-test = { path = "./tests/build" } diff --git a/crates/depit/Cargo.toml b/crates/depit/Cargo.toml index 09d4fcd..2012629 100644 --- a/crates/depit/Cargo.toml +++ b/crates/depit/Cargo.toml @@ -1,7 +1,8 @@ [package] name = "depit" -version = "0.1.0" +version = "0.2.0" description = "WIT dependency management" +readme = "../../README.md" authors.workspace = true categories.workspace = true