diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 5dbbb9d..0f4566f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,5 +1,5 @@ { - "monocore": "0.1.0", - "monofs": "0.1.0", - "monoutils-store": "0.1.0" + "monocore": "0.2.0", + "monofs": "0.2.0", + "monoutils-store": "0.2.0" } diff --git a/Cargo.lock b/Cargo.lock index 75b0a4d..9d46e29 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1567,7 +1567,7 @@ version = "0.1.0" [[package]] name = "monocore" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "async-trait", @@ -1617,7 +1617,7 @@ dependencies = [ [[package]] name = "monofs" -version = "0.1.0" +version = "0.2.0" dependencies = [ "aliasable", "anyhow", @@ -1649,7 +1649,7 @@ version = "0.1.0" [[package]] name = "monoutils-store" -version = "0.1.0" +version = "0.2.0" dependencies = [ "aliasable", "anyhow", diff --git a/monocore/CHANGELOG.md b/monocore/CHANGELOG.md index 57abc6c..2e4a40c 100644 --- a/monocore/CHANGELOG.md +++ b/monocore/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.2.0](https://github.com/appcypher/monocore/compare/monocore-v0.1.0...monocore-v0.2.0) (2024-12-10) + + +### ⚠ BREAKING CHANGES + +* **config:** Removes service type variants (Default, HttpHandler, Precursor) in favor of a single unified Service struct. This change simplifies the configuration model while maintaining all functionality. + +### Code Refactoring + +* **config:** simplify service model and improve volume handling ([#69](https://github.com/appcypher/monocore/issues/69)) ([571219d](https://github.com/appcypher/monocore/commit/571219da112ff484e8d0f77162e6d8704dc99f5f)) + ## [0.1.0](https://github.com/appcypher/monocore/compare/monocore-v0.1.0...monocore-v0.1.0) (2024-12-03) diff --git a/monocore/Cargo.toml b/monocore/Cargo.toml index c8d7c0c..b814997 100644 --- a/monocore/Cargo.toml +++ b/monocore/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "monocore" -version = "0.1.0" +version = "0.2.0" description = "`monocore` is a secure MicroVM provisioning system for running untrusted code in isolated environments." license.workspace = true repository.workspace = true diff --git a/monofs/CHANGELOG.md b/monofs/CHANGELOG.md index 58bff95..8eca890 100644 --- a/monofs/CHANGELOG.md +++ b/monofs/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.2.0](https://github.com/appcypher/monocore/compare/monofs-v0.1.0...monofs-v0.2.0) (2024-12-10) + + +### Miscellaneous Chores + +* **monofs:** Synchronize monocore-project versions + ## [0.1.0](https://github.com/appcypher/monocore/compare/monofs-v0.1.0...monofs-v0.1.0) (2024-12-03) diff --git a/monofs/Cargo.toml b/monofs/Cargo.toml index de8b00b..951c979 100644 --- a/monofs/Cargo.toml +++ b/monofs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "monofs" -version = "0.1.0" +version = "0.2.0" description = "`monofs` is an immutable distributed file system." license.workspace = true repository.workspace = true diff --git a/monoutils-store/CHANGELOG.md b/monoutils-store/CHANGELOG.md index ff5ff38..78c2efb 100644 --- a/monoutils-store/CHANGELOG.md +++ b/monoutils-store/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.2.0](https://github.com/appcypher/monocore/compare/monoutils-store-v0.1.0...monoutils-store-v0.2.0) (2024-12-10) + + +### Miscellaneous Chores + +* **monoutils-store:** Synchronize monocore-project versions + ## [0.1.0](https://github.com/appcypher/monocore/compare/monoutils-store-v0.1.0...monoutils-store-v0.1.0) (2024-12-03) diff --git a/monoutils-store/Cargo.toml b/monoutils-store/Cargo.toml index 4c5556e..2684085 100644 --- a/monoutils-store/Cargo.toml +++ b/monoutils-store/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "monoutils-store" -version = "0.1.0" +version = "0.2.0" description = "`monoutils-store` is a library for working with IPLD content-addressed stores (CAS)." license.workspace = true repository.workspace = true