Skip to content

Commit

Permalink
Prepare for release 0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jack-Keene committed Mar 21, 2023
1 parent c5a9166 commit b04e35a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Version 0.14.0 (2023-03-21)
---------------------------
Adds deprecation warnings for V1 changes (#315)
Update GH actions to use Node16 (#317)
Adds event store parameter to Snowplow interface (#320)
Adds missing parameters to async emitter (#323)

Version 0.13.0 (2023-01-24)
---------------------------
Adds Snowplow Interface (#295)
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
author = 'Alex Dean, Paul Boocock, Matus Tomlein, Jack Keene'

# The full version, including alpha/beta/rc tags
release = "0.13"
release = "0.14"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

setup(
name="snowplow-tracker",
version="0.13.0",
version="0.14.0",
author=authors_str,
author_email=authors_email_str,
packages=[
Expand Down
2 changes: 1 addition & 1 deletion snowplow_tracker/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
# language governing permissions and limitations there under.
# """

__version_info__ = (0, 13, 0)
__version_info__ = (0, 14, 0)
__version__ = ".".join(str(x) for x in __version_info__)
__build_version__ = __version__ + ""

0 comments on commit b04e35a

Please sign in to comment.