diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a2c6c25..8a165b0 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{"crates/nots-cli":"0.1.8","crates/nots-worker":"0.1.0","crates/notsd":"0.1.4"} \ No newline at end of file +{"crates/nots-cli":"0.1.9","crates/nots-worker":"0.1.1","crates/notsd":"0.1.5"} \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index 9168376..6897eeb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1413,7 +1413,7 @@ dependencies = [ [[package]] name = "nots-cli" -version = "0.1.8" +version = "0.1.9" dependencies = [ "async-trait", "bollard", @@ -1453,7 +1453,7 @@ dependencies = [ [[package]] name = "nots-worker" -version = "0.1.0" +version = "0.1.1" dependencies = [ "color-eyre", "futures", @@ -1471,7 +1471,7 @@ dependencies = [ [[package]] name = "notsd" -version = "0.1.4" +version = "0.1.5" dependencies = [ "aes-kw", "argon2", diff --git a/crates/nots-cli/CHANGELOG.md b/crates/nots-cli/CHANGELOG.md index 39807bf..4f67814 100644 --- a/crates/nots-cli/CHANGELOG.md +++ b/crates/nots-cli/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [0.1.9](https://github.com/explodingcamera/nots/compare/nots-cli-v0.1.8...nots-cli-v0.1.9) (2023-11-09) + + +### Features + +* **client:** lots of improvements ([9d072ce](https://github.com/explodingcamera/nots/commit/9d072ce3248d384ba5697dcb0f017347edb68ce2)) +* **nots-cli,notsd:** shorter password requirements, finish server init command ([3c9c2e7](https://github.com/explodingcamera/nots/commit/3c9c2e7300e51eeda99ed1d3a700e0872a6808d3)) +* **nots-cli:** server init command tui ([3b5d6e9](https://github.com/explodingcamera/nots/commit/3b5d6e9264da0c976f78d5f57a6176ea0211e897)) +* **notsd:** progress on scheduler ([37ee525](https://github.com/explodingcamera/nots/commit/37ee5251d63d8b881cdb905e53f0b5ac6c6a5f69)) + ## [0.1.8](https://github.com/explodingcamera/nots/compare/nots-cli-v0.1.7...nots-cli-v0.1.8) (2023-11-02) diff --git a/crates/nots-cli/Cargo.toml b/crates/nots-cli/Cargo.toml index dcd17f8..7951cc7 100644 --- a/crates/nots-cli/Cargo.toml +++ b/crates/nots-cli/Cargo.toml @@ -2,7 +2,7 @@ edition="2021" name="nots-cli" publish=false -version="0.1.8" +version="0.1.9" [[bin]] name="nots-cli" diff --git a/crates/nots-worker/CHANGELOG.md b/crates/nots-worker/CHANGELOG.md index 37a1fec..05f151b 100644 --- a/crates/nots-worker/CHANGELOG.md +++ b/crates/nots-worker/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.1.1](https://github.com/explodingcamera/nots/compare/nots-worker-v0.1.0...nots-worker-v0.1.1) (2023-11-09) + + +### Features + +* **client:** lots of improvements ([9d072ce](https://github.com/explodingcamera/nots/commit/9d072ce3248d384ba5697dcb0f017347edb68ce2)) + + +### Bug Fixes + +* **notsd:** locks held through await ([bda4dd3](https://github.com/explodingcamera/nots/commit/bda4dd372104fa732a7ba7f139b12d75cb52a010)) + ## 0.1.0 (2023-10-29) diff --git a/crates/nots-worker/Cargo.toml b/crates/nots-worker/Cargo.toml index e863738..e9e1160 100644 --- a/crates/nots-worker/Cargo.toml +++ b/crates/nots-worker/Cargo.toml @@ -2,7 +2,7 @@ edition="2021" name="nots-worker" publish=false -version="0.1.0" +version="0.1.1" [dependencies] color-eyre="0.6" diff --git a/crates/notsd/CHANGELOG.md b/crates/notsd/CHANGELOG.md index afa3cb1..cffeb33 100644 --- a/crates/notsd/CHANGELOG.md +++ b/crates/notsd/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [0.1.5](https://github.com/explodingcamera/nots/compare/notsd-v0.1.4...notsd-v0.1.5) (2023-11-09) + + +### Features + +* **client:** lots of improvements ([9d072ce](https://github.com/explodingcamera/nots/commit/9d072ce3248d384ba5697dcb0f017347edb68ce2)) +* **nots-cli,notsd:** shorter password requirements, finish server init command ([3c9c2e7](https://github.com/explodingcamera/nots/commit/3c9c2e7300e51eeda99ed1d3a700e0872a6808d3)) +* **notsd:** progress on scheduler ([37ee525](https://github.com/explodingcamera/nots/commit/37ee5251d63d8b881cdb905e53f0b5ac6c6a5f69)) + + +### Bug Fixes + +* **notsd:** locks held through await ([bda4dd3](https://github.com/explodingcamera/nots/commit/bda4dd372104fa732a7ba7f139b12d75cb52a010)) + ## [0.1.4](https://github.com/explodingcamera/nots/compare/notsd-v0.1.3...notsd-v0.1.4) (2023-11-02) diff --git a/crates/notsd/Cargo.toml b/crates/notsd/Cargo.toml index 6215f9a..befa7d7 100644 --- a/crates/notsd/Cargo.toml +++ b/crates/notsd/Cargo.toml @@ -2,7 +2,7 @@ edition="2021" name="notsd" publish=false -version="0.1.4" +version="0.1.5" [dependencies] color-eyre="0.6"