diff --git a/CHANGELOG.md b/CHANGELOG.md index d1f1b42..6cf3c4a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.2.3 + +* [Full Changelog](https://github.com/PostHog/posthog-go/compare/v...v1.2.3) + # Changelog ## 1.2.2 - 2024-08-08 @@ -17,4 +21,4 @@ Breaking changes: 2. Local Evaluation added to IsFeatureEnabled and GetFeatureFlag. These functions now accept person and group properties arguments. The arguments will be used to locally evaluate relevant feature flags. 3. Feature flag functions take a payload called `FeatureFlagPayload` when a key is require and `FeatureFlagPayloadNoKey` when a key is not required. The payload will handle defaults for all unspecified arguments automatically. 3. Feature Flag defaults have been removed. If the flag fails for any reason, nil will be returned. -4. GetAllFlags argument added. This function returns all flags related to the id. \ No newline at end of file +4. GetAllFlags argument added. This function returns all flags related to the id. diff --git a/version.go b/version.go index 2f49470..6f93843 100644 --- a/version.go +++ b/version.go @@ -3,7 +3,7 @@ package posthog import "flag" // Version of the client. -const Version = "1.2.2" +const Version = "1.2.3" // make tests easier by using a constant version func getVersion() string {