Skip to content

Commit 808410c

Browse files
authored
bump version and update changelog (#49)
bump version
1 parent b8b50b6 commit 808410c

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 1.2.2 - 2024-08-08
4+
5+
1. Adds logging to error responses from the PostHog API so that users can see how a call failed (e.g. rate limiting) from the SDK itself.
6+
2. Better string formatting in `poller.Errorf`
7+
38
## 1.2.1 - 2024-08-07
49

510
1. The client will fall back to the `/decide` endpoint when evaluating feature flags if the user does not wish to provide a PersonalApiKey. This fixes an issue where users were unable to use this SDK without providing a PersonalApiKey. This fallback will make feature flag usage less performant, but will save users money by not making them pay for public API access.

version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package posthog
33
import "flag"
44

55
// Version of the client.
6-
const Version = "1.2.1"
6+
const Version = "1.2.2"
77

88
// make tests easier by using a constant version
99
func getVersion() string {

0 commit comments

Comments
 (0)