Skip to content

Commit

Permalink
bump version 1.1.0 -> 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gahjelle committed May 19, 2022
1 parent 0fb69c9 commit 0009bac
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
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.0"
version = "1.1.1"
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.0"
current_version = "1.1.1"
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.0"
__version__ = "1.1.1"

# 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.0
- realpython-reader v1.1.1
"""
# Standard library imports
import sys
Expand Down

0 comments on commit 0009bac

Please sign in to comment.