Skip to content

Commit ceec1ed

Browse files
committed
bump version 1.0.0 -> 1.1.0
1 parent 8b31071 commit ceec1ed

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "realpython-reader"
7-
version = "1.0.0"
7+
version = "1.1.0"
88
description = "Read the latest Real Python tutorials"
99
readme = "README.md"
1010
authors = [{ name = "Real Python", email = "info@realpython.com" }]
@@ -31,7 +31,7 @@ requires-python = ">=3.7"
3131

3232

3333
[tool.bumpver]
34-
current_version = "1.0.0"
34+
current_version = "1.1.0"
3535
version_pattern = "MAJOR.MINOR.PATCH"
3636
commit_message = "bump version {old_version} -> {new_version}"
3737
commit = true

src/reader/__init__.py

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

2020

2121
# Version of realpython-reader package
22-
__version__ = "1.0.0"
22+
__version__ = "1.1.0"
2323

2424
# Read URL of the Real Python feed from config file
2525
_cfg = tomllib.loads(resources.read_text("reader", "config.toml"))

src/reader/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
Version:
4141
--------
4242
43-
- realpython-reader v1.0.0
43+
- realpython-reader v1.1.0
4444
"""
4545
# Standard library imports
4646
import sys

0 commit comments

Comments
 (0)