Skip to content

Commit

Permalink
Prepare for 1.0.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Jack-Keene committed Jul 12, 2023
1 parent d236424 commit fdc2abc
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.1 (2023-07-12)
--------------------------
Fix tstamp parameter in track_self_describing_event (#350) (Thanks to @andehen)

Version 1.0.0 (2023-06-16)
--------------------------
Remove Redis and Celery Emitters (#335)
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.0"
release = "1.0.1"


# -- 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.0",
version="1.0.1",
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, 0)
__version_info__ = (1, 0, 1)
__version__ = ".".join(str(x) for x in __version_info__)
__build_version__ = __version__ + ""

0 comments on commit fdc2abc

Please sign in to comment.