Skip to content

Commit fdc2abc

Browse files
committed
Prepare for 1.0.1 release
1 parent d236424 commit fdc2abc

4 files changed

Lines changed: 7 additions & 3 deletions

File tree

CHANGES.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Version 1.0.1 (2023-07-12)
2+
--------------------------
3+
Fix tstamp parameter in track_self_describing_event (#350) (Thanks to @andehen)
4+
15
Version 1.0.0 (2023-06-16)
26
--------------------------
37
Remove Redis and Celery Emitters (#335)

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 = "1.0.0"
31+
release = "1.0.1"
3232

3333

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

setup.py

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

4141
setup(
4242
name="snowplow-tracker",
43-
version="1.0.0",
43+
version="1.0.1",
4444
author=authors_str,
4545
author_email=authors_email_str,
4646
packages=["snowplow_tracker", "snowplow_tracker.test", "snowplow_tracker.events"],

snowplow_tracker/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
# language governing permissions and limitations there under.
1616
# """
1717

18-
__version_info__ = (1, 0, 0)
18+
__version_info__ = (1, 0, 1)
1919
__version__ = ".".join(str(x) for x in __version_info__)
2020
__build_version__ = __version__ + ""

0 commit comments

Comments
 (0)