Skip to content

Commit 6ee1114

Browse files
authored
release: Android v3.31.0 / Server v2.3.0 (#410)
* doc(server): Update CHANGELOG to v2.3.0 * doc(android): Update CHANGELOG to v3.31.0 * chore(release): bump server to 2.3.0 * chore(release): bump android to 3.31.0
1 parent 63f3b47 commit 6ee1114

4 files changed

Lines changed: 10 additions & 6 deletions

File tree

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ android.defaults.buildfeatures.resvalues=false
2323

2424
# Release - Module-specific versions
2525
coreVersion=6.4.0
26-
androidVersion=3.30.0
27-
serverVersion=2.2.0
26+
androidVersion=3.31.0
27+
serverVersion=2.3.0

posthog-android/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## Next
22

3+
# 3.31.0 - 2026-02-05
4+
35
- fix: Queue pending feature flags reload instead of dropping requests when a reload is already in flight ([#407](https://github.com/PostHog/posthog-android/pull/407))
46
- feat: Expose `getFeatureFlagResult` to public API ([#405](https://github.com/PostHog/posthog-android/pull/405))
57

posthog-server/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## Next
22

3+
## 2.3.0 - 2026-02-05
4+
35
- feat: Expose `getFeatureFlagResult` to public API ([#405](https://github.com/PostHog/posthog-android/pull/405))
46

57
## 2.2.0 - 2026-01-23

scripts/prepare-release.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,18 @@ NEW_VERSION="$2"
1414
BRANCH_NAME="release/${MODULE}-v${NEW_VERSION}"
1515

1616
# ensure we're on main and up to date
17-
git checkout main
18-
git pull
17+
# git checkout main
18+
# git pull
1919

2020
# create release branch
21-
git checkout -b "$BRANCH_NAME"
21+
# git checkout -b "$BRANCH_NAME"
2222

2323
# bump version
2424
./scripts/bump-version.sh $MODULE $NEW_VERSION
2525

2626
# commit and push release branch
2727
git commit -am "chore(release): bump ${MODULE} to ${NEW_VERSION}"
28-
git push -u origin "$BRANCH_NAME"
28+
# git push -u origin "$BRANCH_NAME"
2929

3030
PR_URL="https://github.com/PostHog/posthog-android/compare/main...release%2F${MODULE}-v${NEW_VERSION}?expand=1"
3131

0 commit comments

Comments
 (0)