Skip to content

Commit b75934a

Browse files
committed
Prepare for 1.0.3 release
1 parent 9554954 commit b75934a

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGES.txt

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
Version 1.0.3 (2024-08-27)
2+
--------------------------
3+
Fix docs action (close #367)
4+
Update `on_success` docstring (close #358)
5+
Add py.typed to package (close #360) (Thanks to @edgarrmondragon)
6+
Update typing
7+
Fix `PagePing`, `PageView`, and `StructuredEvent` property getters (close #361)
8+
19
Version 1.0.2 (2024-02-26)
210
--------------------------
311
Add Python 3.12 to CI tests (#356) (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.2"
31+
release = "1.0.3"
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.2",
43+
version="1.0.3",
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, 2)
18+
__version_info__ = (1, 0, 3)
1919
__version__ = ".".join(str(x) for x in __version_info__)
2020
__build_version__ = __version__ + ""

0 commit comments

Comments
 (0)