From 5bd2cb6ca88f57f293e7d78039a5c87d99b6f0c3 Mon Sep 17 00:00:00 2001 From: Max Hedgehog Date: Thu, 8 Aug 2024 23:31:33 +0000 Subject: [PATCH] Bump version to 1.2.3 --- CHANGELOG.md | 6 +++++- version.go | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) 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 {