Skip to content

Commit

Permalink
Bump version: 0.1.0 → 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
domdfcoding committed Jun 18, 2020
1 parent 69c83db commit e42dff7
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.0
current_version = 0.1.1
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ flake8_strftime
.. |language| image:: https://img.shields.io/github/languages/top/domdfcoding/flake8_strftime
:alt: GitHub top language

.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/flake8_strftime/v0.1.0
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/flake8_strftime/v0.1.1
:target: https://github.com/domdfcoding/flake8_strftime/pulse
:alt: GitHub commits since tagged version

Expand Down
4 changes: 2 additions & 2 deletions __pkginfo__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
2020 Dominic Davis-Foster <[email protected]>
"""

__version__ = "0.1.0"
__version__ = "0.1.1"

modname = "flake8_strftime"
pypi_name = "flake8_strftime"
Expand All @@ -70,7 +70,7 @@
repo_root = pathlib.Path(__file__).parent

# Get info from files; set: long_description
long_description = (repo_root / "README.rst").read_text(encoding="utf-8").replace("0.1.0", __version__) + '\n'
long_description = (repo_root / "README.rst").read_text(encoding="utf-8").replace("0.1.1", __version__) + '\n'
conda_description = """A flake8 plugin which checks for use of platform specific strftime codes.
Expand Down
2 changes: 1 addition & 1 deletion doc-source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ flake8_strftime
.. |language| image:: https://img.shields.io/github/languages/top/domdfcoding/flake8_strftime
:alt: GitHub top language

.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/flake8_strftime/v0.1.0
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/flake8_strftime/v0.1.1
:target: https://github.com/domdfcoding/flake8_strftime/pulse
:alt: GitHub commits since tagged version

Expand Down
2 changes: 1 addition & 1 deletion flake8_strftime/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
__copyright__ = "2020 Dominic Davis-Foster"

__license__ = "MIT"
__version__ = "0.1.0"
__version__ = "0.1.1"
__email__ = "[email protected]"
# stdlib
import ast
Expand Down
2 changes: 1 addition & 1 deletion git_helper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ repo_name: flake8_strftime
copyright_years: "2020"
author: "Dominic Davis-Foster"
email: "[email protected]"
version: "0.1.0"
version: "0.1.1"
username: "domdfcoding"
license: 'MIT'
short_desc: "A flake8 plugin which checks for use of platform specific strftime codes."
Expand Down

0 comments on commit e42dff7

Please sign in to comment.