Skip to content

Commit

Permalink
v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
janrg committed Jul 12, 2019
1 parent 9125646 commit 7dcafef
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 4 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.2.0
commit = False
tag = False

Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
Changelog
=========

0.2.0 (2019-07-12)
------------------

* Custom sorting
* Reordering of secondary keys

0.1.0 (2018-07-28)
------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
year = "2018"
author = "Jan Greis"
copyright = "{0}, {1}".format(year, author)
version = release = "0.1.0"
version = release = "0.2.0"

pygments_style = "trac"
templates_path = ["."]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def read(*names, **kwargs):

setup(
name="multidirmap",
version="0.1.0",
version="0.2.0",
license="MIT license",
description=(
"A multidirectional map where an arbitrary number of columns"
Expand Down
2 changes: 1 addition & 1 deletion src/multidirmap/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
from .multidirmap import DuplicateKeyError
from .multidirmap import MultiDirMap

__version__ = "0.1.0"
__version__ = "0.2.0"
__all__ = ["MultiDirMap", "DuplicateKeyError"]
1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ deps =
readme-renderer
pygments
isort
pydocstyle<4.0.0
skip_install = true
commands =
python setup.py check --strict --metadata --restructuredtext
Expand Down

0 comments on commit 7dcafef

Please sign in to comment.