diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 1753d57..7879ca9 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,4 +1,4 @@ { - "backend": "1.0.0", - "frontend": "1.0.0" + "backend": "1.1.0", + "frontend": "1.1.0" } \ No newline at end of file diff --git a/backend/CHANGELOG.md b/backend/CHANGELOG.md new file mode 100644 index 0000000..687ea54 --- /dev/null +++ b/backend/CHANGELOG.md @@ -0,0 +1,17 @@ +# Changelog + +## [1.1.0](https://github.com/echohello-dev/wingman/compare/v1.0.0...v1.1.0) (2026-01-02) + + +### Features + +* **conversation:** implement conversation memory and history storage ([40cb95f](https://github.com/echohello-dev/wingman/commit/40cb95ff0e1f99e097b2cabcb863fab14193584b)) +* enhance VSCode configuration and update Slack message posting ([c7d8e0c](https://github.com/echohello-dev/wingman/commit/c7d8e0cfaefb8f9f7f168e431667d8146262b878)) +* **migrations:** add initial schema with conversation memory and related tables ([bd851ff](https://github.com/echohello-dev/wingman/commit/bd851ff65e2afa85ae360bf187f6e9cca8b5e41f)) + + +### Bug Fixes + +* **config:** make Slack credentials optional with defaults for testing ([0a6a71a](https://github.com/echohello-dev/wingman/commit/0a6a71aa164ccefc53ae438411e7532c6e511b02)) +* update Dockerfiles to match project tooling ([1ef2d4e](https://github.com/echohello-dev/wingman/commit/1ef2d4ecbfb568e885af77def134f3f4657018b1)) +* upgrade Python 3.13 and update dependencies for Pydantic 2.x compatibility ([e14d51c](https://github.com/echohello-dev/wingman/commit/e14d51cba53458d87f6b75e2f18ee928cefab44f)) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 22f547f..fc9d48f 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "wingman" -version = "0.1.0" +version = "1.1.0" description = "Wingman - Slack bot with RAG capabilities" requires-python = ">=3.13" dependencies = [ diff --git a/frontend/CHANGELOG.md b/frontend/CHANGELOG.md new file mode 100644 index 0000000..322c363 --- /dev/null +++ b/frontend/CHANGELOG.md @@ -0,0 +1,15 @@ +# Changelog + +## [1.1.0](https://github.com/echohello-dev/wingman/compare/wingman-dashboard-v1.0.0...wingman-dashboard-v1.1.0) (2026-01-02) + + +### Features + +* **icons:** add new padded and tight icons in PNG and SVG formats ([9c582d6](https://github.com/echohello-dev/wingman/commit/9c582d66f0f2ebe63798d9340175058d5cf05bb0)) + + +### Bug Fixes + +* add frontend/lib/api.ts to git (was ignored) ([dbb9d30](https://github.com/echohello-dev/wingman/commit/dbb9d30081ce67db8237c081e994554d494bea3f)) +* update Dockerfiles to match project tooling ([1ef2d4e](https://github.com/echohello-dev/wingman/commit/1ef2d4ecbfb568e885af77def134f3f4657018b1)) +* update TypeScript configuration for JSX and import paths ([69b012e](https://github.com/echohello-dev/wingman/commit/69b012ee3d7d15ffbfa4b2d1d645b20a3586d686)) diff --git a/frontend/package.json b/frontend/package.json index a6a50ad..df8025d 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "wingman-dashboard", - "version": "0.1.0", + "version": "1.1.0", "private": true, "scripts": { "dev": "next dev",