Skip to content

Commit 6a598ea

Browse files
committed
Release 2.1.0
1 parent d1d9c14 commit 6a598ea

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

History.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11

2+
2.1.0 / 2021-10-28
3+
==================
4+
5+
* Add basic group analytics support
6+
* Fix bin/posthog help text
7+
* Allow bypassing ssl in bin/ command
8+
29
2.0.6 / 2021-10-05
310
==================
411

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ lint: dependencies
2626

2727
release:
2828
@printf "releasing ${VERSION}..."
29-
@sed -E -i '' -e "s/(public const VERSION =).+/\1 '${VERSION}';/" ./lib/PostHog.php
29+
@sed -E -e "s/(public const VERSION =).+/\1 '${VERSION}';/" ./lib/PostHog.php
3030
@node -e "var fs = require('fs'), pkg = require('./composer'); pkg.version = '${VERSION}'; fs.writeFileSync('./composer.json', JSON.stringify(pkg, null, '\t'));"
3131
@git changelog -t ${VERSION}
3232
@git release ${VERSION}

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "posthog/posthog-php",
3-
"version": "2.0.6",
3+
"version": "2.1.0",
44
"description": "PostHog PHP Library",
55
"keywords": [
66
"posthog"
@@ -36,4 +36,4 @@
3636
"bin": [
3737
"bin/posthog"
3838
]
39-
}
39+
}

lib/PostHog.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
class PostHog
88
{
9-
public const VERSION = '2.0.6';
9+
public const VERSION = '2.1.0';
1010
public const ENV_API_KEY = "POSTHOG_API_KEY";
1111
public const ENV_HOST = "POSTHOG_HOST";
1212

0 commit comments

Comments
 (0)