Skip to content

Commit 197fa9c

Browse files
committed
Prepare for 1.1.0 release
1 parent c74108d commit 197fa9c

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

CHANGES.txt

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Version 1.1.0 (2025-02-20)
2+
--------------------------
3+
Bump Ubuntu Version in GH Actions (#375)
4+
Avoid installing types-requests at run-time (#370) (Thanks to @edgarrmondragon)
5+
16
Version 1.0.4 (2024-11-19)
27
--------------------------
38
Test with Python 3.13 (#365) (Thanks to @edgarrmondragon)

docs/source/conf.py

+1-1
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.4"
31+
release = "1.1.0"
3232

3333

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

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

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

snowplow_tracker/_version.py

+1-1
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, 4)
18+
__version_info__ = (1, 1, 0)
1919
__version__ = ".".join(str(x) for x in __version_info__)
2020
__build_version__ = __version__ + ""

0 commit comments

Comments
 (0)