Skip to content

Commit 723f21f

Browse files
committed
Prepare for release 0.12.0
1 parent 2cd6abb commit 723f21f

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGES.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
Version 0.12.0 (2022-11-03)
2+
---------------------------
3+
Adds Domain Session ID and Domain Session Index to Subject class (#282) (Thanks to @cpnat)
4+
Add support for Python 3.11 (#286)
5+
Change default protocol to HTTPS in the Emitter (#14)
6+
Change default method to POST in the Emitter (#289)
7+
Update Docker base image (#283) (Thanks to @cpnat)
8+
19
Version 0.11.0 (2022-10-06)
210
---------------------------
311
Update README file (#264)

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
author = 'Alex Dean, Paul Boocock, Matus Tomlein, Jack Keene'
2929

3030
# The full version, including alpha/beta/rc tags
31-
release = '0.11'
31+
release = '0.12'
3232

3333

3434
# -- General configuration ---------------------------------------------------

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838
setup(
3939
name="snowplow-tracker",
40-
version="0.11.0",
40+
version="0.12.0",
4141
author=authors_str,
4242
author_email=authors_email_str,
4343
packages=[

snowplow_tracker/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
# License: Apache License Version 2.0
2020
# """
2121

22-
__version_info__ = (0, 11, 0)
22+
__version_info__ = (0, 12, 0)
2323
__version__ = ".".join(str(x) for x in __version_info__)
2424
__build_version__ = __version__ + ""

0 commit comments

Comments
 (0)