From 19db4207596550a7f14706ad54370ded3a82b7a6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 12 Oct 2024 01:09:32 +0000 Subject: [PATCH] chore: release main --- .github/.release-please-manifest.json | 6 +++--- Cargo.lock | 6 +++--- strandify-cli/CHANGELOG.md | 4 ++++ strandify-cli/Cargo.toml | 4 ++-- strandify-wasm/CHANGELOG.md | 4 ++++ strandify-wasm/Cargo.toml | 4 ++-- strandify/CHANGELOG.md | 7 +++++++ strandify/Cargo.toml | 2 +- 8 files changed, 26 insertions(+), 11 deletions(-) diff --git a/.github/.release-please-manifest.json b/.github/.release-please-manifest.json index f0e833e..79d3505 100644 --- a/.github/.release-please-manifest.json +++ b/.github/.release-please-manifest.json @@ -1,5 +1,5 @@ { - "strandify": "0.4.3", - "strandify-cli": "0.4.3", - "strandify-wasm": "0.3.2" + "strandify": "0.4.4", + "strandify-cli": "0.4.4", + "strandify-wasm": "0.3.3" } diff --git a/Cargo.lock b/Cargo.lock index 26a4a93..cd15521 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1596,7 +1596,7 @@ dependencies = [ [[package]] name = "strandify" -version = "0.4.3" +version = "0.4.4" dependencies = [ "criterion", "ctor", @@ -1614,7 +1614,7 @@ dependencies = [ [[package]] name = "strandify-cli" -version = "0.4.3" +version = "0.4.4" dependencies = [ "assert_cmd", "assert_fs", @@ -1631,7 +1631,7 @@ dependencies = [ [[package]] name = "strandify-wasm" -version = "0.3.2" +version = "0.3.3" dependencies = [ "base64", "console_error_panic_hook", diff --git a/strandify-cli/CHANGELOG.md b/strandify-cli/CHANGELOG.md index e35cd9d..6fabafb 100644 --- a/strandify-cli/CHANGELOG.md +++ b/strandify-cli/CHANGELOG.md @@ -12,6 +12,10 @@ * dependencies * strandify bumped from 0.4.2 to 0.4.3 +* The following workspace dependencies were updated + * dependencies + * strandify bumped from 0.4.3 to 0.4.4 + ## [0.4.0](https://github.com/loiccoyle/strandify/compare/strandify-cli-v0.3.0...strandify-cli-v0.4.0) (2024-08-26) diff --git a/strandify-cli/Cargo.toml b/strandify-cli/Cargo.toml index f617d32..b5cbe6b 100644 --- a/strandify-cli/Cargo.toml +++ b/strandify-cli/Cargo.toml @@ -5,7 +5,7 @@ license.workspace = true authors.workspace = true name = "strandify-cli" -version = "0.4.3" +version = "0.4.4" description = "CLI utility to generate string art." keywords = ["cli", "string-art", "generative-art", "art"] readme = "../README.md" @@ -17,7 +17,7 @@ name = "strandify" path = "src/main.rs" [dependencies] -strandify = { path = "../strandify", version = "0.4.3" } +strandify = { path = "../strandify", version = "0.4.4" } image = { workspace = true } log = { workspace = true } diff --git a/strandify-wasm/CHANGELOG.md b/strandify-wasm/CHANGELOG.md index a317899..48332fe 100644 --- a/strandify-wasm/CHANGELOG.md +++ b/strandify-wasm/CHANGELOG.md @@ -8,6 +8,10 @@ * dependencies * strandify bumped from 0.4.2 to 0.4.3 +* The following workspace dependencies were updated + * dependencies + * strandify bumped from 0.4.3 to 0.4.4 + ## [0.3.0](https://github.com/loiccoyle/strandify/compare/strandify-wasm-v0.2.1...strandify-wasm-v0.3.0) (2024-09-09) diff --git a/strandify-wasm/Cargo.toml b/strandify-wasm/Cargo.toml index f90767f..c72ae89 100644 --- a/strandify-wasm/Cargo.toml +++ b/strandify-wasm/Cargo.toml @@ -6,11 +6,11 @@ authors.workspace = true name = "strandify-wasm" description = "Wasm bindings for Strandify" -version = "0.3.2" +version = "0.3.3" keywords = ["wasm", "strandify", "string-art", "generative-art", "art"] [dependencies] -strandify = { path = "../strandify", version = "0.4.3", default-features = false } +strandify = { path = "../strandify", version = "0.4.4", default-features = false } image = { workspace = true } serde = { workspace = true } serde_json = { workspace = true } diff --git a/strandify/CHANGELOG.md b/strandify/CHANGELOG.md index f8e8066..f76eba0 100644 --- a/strandify/CHANGELOG.md +++ b/strandify/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.4.4](https://github.com/loiccoyle/strandify/compare/strandify-v0.4.3...strandify-v0.4.4) (2024-10-12) + + +### Bug Fixes + +* remove `env_logger` dep from `strandify` library ([6999382](https://github.com/loiccoyle/strandify/commit/69993829250e483a5d527190bfa1762d8167fd26)) + ## [0.4.3](https://github.com/loiccoyle/strandify/compare/strandify-v0.4.2...strandify-v0.4.3) (2024-09-19) diff --git a/strandify/Cargo.toml b/strandify/Cargo.toml index d20c549..99e8484 100644 --- a/strandify/Cargo.toml +++ b/strandify/Cargo.toml @@ -5,7 +5,7 @@ license.workspace = true authors.workspace = true name = "strandify" -version = "0.4.3" +version = "0.4.4" description = "A string art generation library." keywords = ["string-art", "generative-art", "art"]