Skip to content
This repository has been archived by the owner on May 9, 2020. It is now read-only.

Commit

Permalink
Bump version: 0.9.0 → 0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
N-Coder committed Apr 11, 2020
1 parent c7f193d commit 109f1ad
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 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.9.0
current_version = 0.9.1
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)-?(?P<release>dev)?
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ics.py `0.9.0` : iCalendar for Humans
ics.py `0.9.1` : iCalendar for Humans
=========================================

`Original repository <https://github.com/C4ptainCrunch/ics.py>`_ (GitHub) -
Expand Down
2 changes: 1 addition & 1 deletion doc/event.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ First, let’s import the latest version of ics.py :date:

>>> import ics
>>> ics.__version__
'0.9.0'
'0.9.1'

We’re also going to create a lot of ``datetime`` and ``timedelta``
objects, so we import them as short-hand aliases ``dt`` and ``td``:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "ics"
version = "0.9.0"
version = "0.9.1"
description = "Pythonic iCalendar (RFC 5545) Parser"
authors = ["Nikita Marchant <[email protected]>", "Niko Fink <[email protected]>"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/ics/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ def load_converters():
"__version__"
]

__version__ = "0.9.0"
__version__ = "0.9.1"

0 comments on commit 109f1ad

Please sign in to comment.