Skip to content

Commit

Permalink
Prepare for 1.0.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
greg-el committed Aug 27, 2024
1 parent 9554954 commit b75934a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
Version 1.0.3 (2024-08-27)
--------------------------
Fix docs action (close #367)
Update `on_success` docstring (close #358)
Add py.typed to package (close #360) (Thanks to @edgarrmondragon)
Update typing
Fix `PagePing`, `PageView`, and `StructuredEvent` property getters (close #361)

Version 1.0.2 (2024-02-26)
--------------------------
Add Python 3.12 to CI tests (#356) (Thanks to @edgarrmondragon)
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.2"
release = "1.0.3"


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

0 comments on commit b75934a

Please sign in to comment.