Skip to content

Commit

Permalink
Version bump, silly Pypi.
Browse files Browse the repository at this point in the history
  • Loading branch information
amcgregor committed Apr 25, 2016
1 parent 835535e commit ff5d4a9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -371,6 +371,11 @@ Version 2.0
Version 2.0.1
-------------

- Thanks Pypi.

Version 2.0.2
-------------

- Corrected argument specification for ``transform`` extension callbacks, fixing ``AnnotationExtension`` usage as per
`#163 <https://github.com/marrow/WebCore/issues/163>`_.
- Additional source-level documentation and expanded examples.
Expand Down Expand Up @@ -447,12 +452,12 @@ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
:target: https://github.com/marrow/WebCore/issues
:alt: Github Issues

.. |ghsince| image:: https://img.shields.io/github/commits-since/marrow/WebCore/2.0.1.svg
.. |ghsince| image:: https://img.shields.io/github/commits-since/marrow/WebCore/2.0.2.svg
:target: https://github.com/marrow/WebCore/commits/develop
:alt: Changes since last release.

.. |ghtag| image:: https://img.shields.io/github/tag/marrow/WebCore.svg
:target: https://github.com/marrow/WebCore/tree/2.0.1
:target: https://github.com/marrow/WebCore/tree/2.0.2
:alt: Latest Github tagged release.

.. |latestversion| image:: http://img.shields.io/pypi/v/WebCore.svg?style=flat
Expand Down
2 changes: 1 addition & 1 deletion web/core/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

# ## Module Globals

version_info = namedtuple('version_info', ('major', 'minor', 'micro', 'releaselevel', 'serial'))(2, 0, 1, 'final', 0)
version_info = namedtuple('version_info', ('major', 'minor', 'micro', 'releaselevel', 'serial'))(2, 0, 2, 'final', 0)
version = ".".join([str(i) for i in version_info[:3]]) + ((version_info.releaselevel[0] + str(version_info.serial)) if version_info.releaselevel != 'final' else '')

author = namedtuple('Author', ['name', 'email'])("Alice Bevan-McGregor", 'alice@gothcandy.com')
Expand Down

0 comments on commit ff5d4a9

Please sign in to comment.