Skip to content

Commit

Permalink
Released PyMetrics version 1.0.2
Browse files Browse the repository at this point in the history
Changelog Details:
- [PATCH] Fix #9: Catch circular Django settings import Conformity error
  • Loading branch information
nickwilliams-eventbrite committed Mar 6, 2020
1 parent b80bfbb commit 432ae88
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
=========

1.0.2 (2020-03-06)
------------------
- [PATCH] Fix #9: Catch circular Django settings import Conformity error

1.0.1 (2019-12-11)
------------------
- [PATCH] Fix setup.cfg wheel config to build proper wheel
Expand Down
2 changes: 1 addition & 1 deletion pymetrics/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
)


__version_info__ = (1, 0, 1)
__version_info__ = (1, 0, 2)
__version__ = '-'.join(filter(None, ['.'.join(map(str, __version_info__[:3])), (__version_info__[3:] or [None])[0]]))

0 comments on commit 432ae88

Please sign in to comment.