diff --git a/Cargo.toml b/Cargo.toml index a218da4..5a06a9d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ authors = ["HugoByte", "The HugoByte Team "] edition = "2021" repository = "https://github.com/hugobyte/composer.git" -version = "0.0.1" +version = "0.0.2" # Config for 'cargo dist' [workspace.metadata.dist] diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md new file mode 100644 index 0000000..2ce54b1 --- /dev/null +++ b/cli/CHANGELOG.md @@ -0,0 +1,5 @@ +# Changelog + +All notable changes to this project will be documented in this file. + + diff --git a/composer-primitives/CHANGELOG.md b/composer-primitives/CHANGELOG.md new file mode 100644 index 0000000..aace653 --- /dev/null +++ b/composer-primitives/CHANGELOG.md @@ -0,0 +1,15 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +## [0.0.2] - 2024-05-06 + +### 🐛 Bug Fixes + +- Composer version flag to small case ([#19](https://github.com/HugoByte/composer/pull/19)) + +### ⚙️ Miscellaneous Tasks + +- Release ([#34](https://github.com/HugoByte/composer/pull/34)) + + diff --git a/composer-primitives/Cargo.toml b/composer-primitives/Cargo.toml index 760ebf1..dc86d51 100644 --- a/composer-primitives/Cargo.toml +++ b/composer-primitives/Cargo.toml @@ -15,4 +15,4 @@ thiserror = "1.0.50" itertools = "0.12.1" tempfile = "3.2.0" walkdir = "2" -anyhow = "1.0.65" \ No newline at end of file +anyhow = "1.0.65" diff --git a/echo-library/CHANGELOG.md b/echo-library/CHANGELOG.md new file mode 100644 index 0000000..6f28a9f --- /dev/null +++ b/echo-library/CHANGELOG.md @@ -0,0 +1,36 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +## [0.0.2] - 2024-05-06 + +### 🚀 Features + +- Implement parallel building of workflow wasm + +### 🐛 Bug Fixes + +- Composer version flag to small case ([#19](https://github.com/HugoByte/composer/pull/19)) +- Update the repository name ([#20](https://github.com/HugoByte/composer/pull/20)) +- Handle error if the main file is empty ([#23](https://github.com/HugoByte/composer/pull/23)) +- Validate kind field ([#25](https://github.com/HugoByte/composer/pull/25)) +- Validation for default type ([#24](https://github.com/HugoByte/composer/pull/24)) +- Use common loader while compiling the echo package to fix the import issue ([#28](https://github.com/HugoByte/composer/pull/28)) + +### 🚜 Refactor + +- Refactor folder structure +- Echo-library +- Composer dependency in echo library + +### 📚 Documentation + +- Update composer readme for build and validate command ([#21](https://github.com/HugoByte/composer/pull/21)) + +### ⚙️ Miscellaneous Tasks + +- Bump version +- Add readme for echo library +- Release ([#34](https://github.com/HugoByte/composer/pull/34)) + + diff --git a/echo-library/Cargo.toml b/echo-library/Cargo.toml index a9d2c51..6a309b2 100644 --- a/echo-library/Cargo.toml +++ b/echo-library/Cargo.toml @@ -18,4 +18,4 @@ convert_case = "0.6.0" itertools = "0.12.1" walkdir = "2" composer-primitives = "0.0.1" -rayon = "1.8.1" \ No newline at end of file +rayon = "1.8.1"