From b27cb80b0a359697ede7aeafe5b0c993717c7e7f Mon Sep 17 00:00:00 2001 From: nednella <119449811+nednella@users.noreply.github.com> Date: Thu, 20 Nov 2025 18:08:39 +0000 Subject: [PATCH] chore(main): release api 0.4.1 --- .release-please-manifest.json | 2 +- apps/api/CHANGELOG.md | 8 ++++++++ apps/api/build.gradle | 2 +- .../src/main/java/com/example/echo_api/Application.java | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f8c47f40..fc11e40b 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{"apps/api":"0.4.0","apps/client":"0.3.0"} \ No newline at end of file +{"apps/api":"0.4.1","apps/client":"0.3.0"} \ No newline at end of file diff --git a/apps/api/CHANGELOG.md b/apps/api/CHANGELOG.md index 9d265395..bffc497e 100644 --- a/apps/api/CHANGELOG.md +++ b/apps/api/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.4.1](https://github.com/nednella/echo/compare/api@v0.4.0...api@v0.4.1) (2025-11-20) + + +### Bug Fixes + +* **docs:** add note to highlight default dummy clerk webhook signing secret ([#166](https://github.com/nednella/echo/issues/166)) ([1585c0d](https://github.com/nednella/echo/commit/1585c0d2667d16cb87c0ddc98a1dc01f69c53f26)) +* **docs:** correct spelling/wording errors and numerous broken hyperlinks/references ([#163](https://github.com/nednella/echo/issues/163)) ([4cf1a0c](https://github.com/nednella/echo/commit/4cf1a0c459fd68af5f3ad7bd378da0712ecbe42b)) + ## [0.4.0](https://github.com/nednella/echo/compare/api@v0.3.1...api@v0.4.0) (2025-11-11) diff --git a/apps/api/build.gradle b/apps/api/build.gradle index 0eb024ee..57893591 100644 --- a/apps/api/build.gradle +++ b/apps/api/build.gradle @@ -15,7 +15,7 @@ plugins { } group = 'com.example' -version = '0.4.0' // x-release-please-version +version = '0.4.1' // x-release-please-version java { toolchain { diff --git a/apps/api/src/main/java/com/example/echo_api/Application.java b/apps/api/src/main/java/com/example/echo_api/Application.java index 4b654dab..625794f4 100644 --- a/apps/api/src/main/java/com/example/echo_api/Application.java +++ b/apps/api/src/main/java/com/example/echo_api/Application.java @@ -15,7 +15,7 @@ info = @Info( title = "Echo API", description = "A REST API implementation to serve the Echo client.", - version = "0.4.0" // x-release-please-version + version = "0.4.1" // x-release-please-version ), servers = { @Server(url = "https://api.echo-social.app", description = "Production server"),