Skip to content

Commit 3ab9c12

Browse files
authored
Merge pull request #8 from realpython/release-v0.1.1
Release v0.1.1
2 parents 91371f4 + a62f920 commit 3ab9c12

File tree

4 files changed

+16
-8
lines changed

4 files changed

+16
-8
lines changed

.bumpversion.cfg

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
[bumpversion]
2-
current_version = 0.1.0
2+
current_version = 0.1.1
33
commit = False
44
tag = False
55

6+
[bumpversion:file:setup.py]
7+
68
[bumpversion:file:reader/__init__.py]
79

8-
[bumpversion:file:setup.py]
10+
[bumpversion:file:reader/__main__.py]
911

reader/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
See https://github.com/realpython/reader/ for more information
1010
"""
1111
# Version of realpython-reader package
12-
__version__ = "0.1.0"
12+
__version__ = "0.1.1"
1313

1414
# URL of Real Python feed
1515
URL = "https://realpython.com/atom.xml"

reader/__main__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,12 @@
3535
3636
- https://pypi.org/project/realpython-reader/
3737
- https://github.com/realpython/reader
38+
39+
40+
Version:
41+
--------
42+
43+
- realpython-reader v0.1.1
3844
"""
3945
# Standard library imports
4046
import sys

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
"""Setup script for realpython-reader"""
22

3-
import pathlib
3+
import os.path
44
from setuptools import setup
55

66
# The directory containing this file
7-
HERE = pathlib.Path(__file__).parent
7+
HERE = os.path.abspath(os.path.dirname(__file__))
88

99
# The text of the README file
10-
README = (HERE / "README.md").read_text()
11-
10+
with open(os.path.join(HERE, "README.md")) as fid:
11+
README = fid.read()
1212

1313
# This call to setup() does all the work
1414
setup(
1515
name="realpython-reader",
16-
version="0.1.0",
16+
version="0.1.1",
1717
description="Read Real Python tutorials",
1818
long_description=README,
1919
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)