Skip to content

Commit dc3e609

Browse files
authored
Merge pull request #63 from PostHog/dmarticus/debug-autobump-ci
Fix changelog generation and backfill
2 parents d446344 + 64184af commit dc3e609

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

.github/workflows/label-version-bump.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
BASE_COMMIT: ${{ github.event.pull_request.base.ref }}
8888
run: |
8989
CHANGELOG_HEADING="## $NEW_VERSION - $(date --iso-8601)"
90-
CHANGELOG_POINTS="$(git log v$OLD_VERSION..$BASE_COMMIT --pretty=format:%s --grep='^.*[0-9])$' | sed -e 's/^/- /')"
90+
CHANGELOG_POINTS="$(git log v$OLD_VERSION..$BASE_COMMIT --pretty=format:%s --grep='Merge pull request #' | sed -e 's/^/- /')"
9191
mv CHANGELOG.md CHANGELOG.old.md
9292
echo -e "$CHANGELOG_HEADING\n\n$CHANGELOG_POINTS\n\n$(cat CHANGELOG.old.md)" > CHANGELOG.md
9393
rm CHANGELOG.old.md

CHANGELOG.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
## 0.4.0 - 2026-02-04
22

3+
- Add feature flags with local evaluation support (#36)
4+
- Add group support and anonymous event support (#22)
5+
- Add global disable function (#20)
6+
- Add global client functions (#19)
7+
- Add timestamp setter (#30)
38

9+
## 0.2.0
410

5-
## 0.2.6 - 2025-01-08
6-
7-
8-
9-
## 0.2.5 - 2025-01-08
10-
11-
12-
13-
## - 2025-01-08
11+
- Add generic properties (#1)
12+
- Derive Debug, PartialEq, and Eq on Event

0 commit comments

Comments
 (0)