diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 466df71..2be9c43 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.0" + ".": "0.2.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 14d2fb1..2485a48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [0.2.0](https://github.com/launchdarkly/ruby-server-sdk-ai/compare/0.1.0...0.2.0) (2025-07-30) + + +### Features + +* added provider and model to ai tracker ([5922fe9](https://github.com/launchdarkly/ruby-server-sdk-ai/commit/5922fe931ad227caa187b46153e8cee77b978032)) +* Update AI tracker to include model & provider name for metrics generation ([#11](https://github.com/launchdarkly/ruby-server-sdk-ai/issues/11)) ([ce176e4](https://github.com/launchdarkly/ruby-server-sdk-ai/commit/ce176e42c311857fd6fda30864b8b7cc7b402c20)) + + +### Bug Fixes + +* Remove deprecated track generation event ([#10](https://github.com/launchdarkly/ruby-server-sdk-ai/issues/10)) ([dc13cfb](https://github.com/launchdarkly/ruby-server-sdk-ai/commit/dc13cfb0121e613ccbbfe8f9fda8868b9590e356)) +* Remove unused instance variable ([#13](https://github.com/launchdarkly/ruby-server-sdk-ai/issues/13)) ([6a04b8b](https://github.com/launchdarkly/ruby-server-sdk-ai/commit/6a04b8ba6c85922856e3236d3d31393cd9d17180)) + ## [0.1.0](https://github.com/launchdarkly/ruby-server-sdk-ai/compare/0.0.0...0.1.0) (2025-06-18) diff --git a/PROVENANCE.md b/PROVENANCE.md index ec9f0aa..bf93cfd 100644 --- a/PROVENANCE.md +++ b/PROVENANCE.md @@ -9,7 +9,7 @@ To verify SLSA provenance attestations, we recommend using [slsa-verifier](https ``` # Set the version of the SDK to verify -VERSION=0.1.0 +VERSION=0.2.0 ``` diff --git a/lib/server/ai/version.rb b/lib/server/ai/version.rb index 279eecd..921299b 100644 --- a/lib/server/ai/version.rb +++ b/lib/server/ai/version.rb @@ -3,7 +3,7 @@ module LaunchDarkly module Server module AI - VERSION = '0.1.0' # x-release-please-version + VERSION = '0.2.0' # x-release-please-version end end end