Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Version bump
  • Loading branch information
EndlessTrax committed Oct 14, 2024
commit f50b4855940cd86423f59e5dc779ea11d04071d7
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "realpython-reader"
version = "1.1.2"
version = "1.1.3"
description = "Read the latest Real Python tutorials"
readme = "README.md"
authors = [{ name = "Real Python", email = "info@realpython.com" }]
Expand All @@ -31,7 +31,7 @@ requires-python = ">=3.7"


[tool.bumpver]
current_version = "1.1.2"
current_version = "1.1.3"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
Expand Down
2 changes: 1 addition & 1 deletion src/reader/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@


# Version of realpython-reader package
__version__ = "1.1.2"
__version__ = "1.1.3"

# Read URL of the Real Python feed from config file
_cfg = tomllib.loads(resources.read_text("reader", "config.toml"))
Expand Down
2 changes: 1 addition & 1 deletion src/reader/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
Version:
--------

- realpython-reader v1.1.2
- realpython-reader v1.1.3
"""
# Standard library imports
import sys
Expand Down