Skip to content

Commit

Permalink
Prepare for 1.0.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Jack-Keene committed Feb 26, 2024
1 parent db531d3 commit 7071292
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Version 1.0.2 (2024-02-26)
--------------------------
Add Python 3.12 to CI tests (#356) (Thanks to @edgarrmondragon)

Version 1.0.1 (2023-07-12)
--------------------------
Fix tstamp parameter in track_self_describing_event (#350) (Thanks to @andehen)
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 = "1.0.1"
release = "1.0.2"


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

setup(
name="snowplow-tracker",
version="1.0.1",
version="1.0.2",
author=authors_str,
author_email=authors_email_str,
packages=["snowplow_tracker", "snowplow_tracker.test", "snowplow_tracker.events"],
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__ = (1, 0, 1)
__version_info__ = (1, 0, 2)
__version__ = ".".join(str(x) for x in __version_info__)
__build_version__ = __version__ + ""

0 comments on commit 7071292

Please sign in to comment.