diff --git a/CHANGELOG.md b/CHANGELOG.md index a2bbb76..859ebc8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [v3.3.0](https://github.com/mixpanel/mixpanel-ruby/tree/v3.3.0) (2026-07-24) + +### Fixes +- allow capability to offload reportExposure to async thread (SDK-80) ([#157](https://github.com/mixpanel/mixpanel-ruby/pull/157)) +- surface dropped exposure when distinct_id missing from context ([#154](https://github.com/mixpanel/mixpanel-ruby/pull/154)) +- distinguish fallback reasons + forward backend error message (SDK-79, SDK-83) ([#153](https://github.com/mixpanel/mixpanel-ruby/pull/153)) + +[Full Changelog](https://github.com/mixpanel/mixpanel-ruby/compare/v3.2.0...v3.3.0) + ## [v3.2.0](https://github.com/mixpanel/mixpanel-ruby/tree/v3.2.0) (2026-07-10) ### Features diff --git a/Readme.rdoc b/Readme.rdoc index e485dfc..85181da 100644 --- a/Readme.rdoc +++ b/Readme.rdoc @@ -1,6 +1,6 @@ = mixpanel-ruby: The official Mixpanel Ruby library -##### _July 10, 2026_ - [v3.2.0](https://github.com/mixpanel/mixpanel-ruby/releases/tag/v3.2.0) +##### _July 24, 2026_ - [v3.3.0](https://github.com/mixpanel/mixpanel-ruby/releases/tag/v3.3.0) mixpanel-ruby is a library for tracking events and sending \Mixpanel profile updates to \Mixpanel from your ruby applications. diff --git a/lib/mixpanel-ruby/version.rb b/lib/mixpanel-ruby/version.rb index 289ba2c..e742f6a 100644 --- a/lib/mixpanel-ruby/version.rb +++ b/lib/mixpanel-ruby/version.rb @@ -1,3 +1,3 @@ module Mixpanel - VERSION = '3.2.0' + VERSION = '3.3.0' end