Skip to content

Commit

Permalink
update version and changelog to v2.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vsergeev committed May 18, 2023
1 parent 6a2b4a3 commit 6a9aa1c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
* Version 2.8.0 - 05/18/2023
* Migrate module to package.
* Migrate documentation to Sphinx.
* Improve types and formatting in docstrings.
* Add type stubs.

* Version 2.7.2 - 11/07/2022
* Fix hex formatting of data bytes in Ext string representation.
* Contributors
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
project = 'u-msgpack-python'
copyright = '2013-2023, Vanya A. Sergeev'
author = 'Vanya A. Sergeev'
release = '2.7.2'
release = '2.8.0'

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='u-msgpack-python',
version='2.7.2',
version='2.8.0',
description='A portable, lightweight MessagePack serializer and deserializer written in pure Python.',
author='vsergeev',
author_email='[email protected]',
Expand Down
8 changes: 4 additions & 4 deletions umsgpack/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# u-msgpack-python v2.7.2 - v at sergeev.io
# u-msgpack-python v2.8.0 - v at sergeev.io
# https://github.com/vsergeev/u-msgpack-python
#
# u-msgpack-python is a lightweight MessagePack serializer and deserializer
Expand Down Expand Up @@ -31,7 +31,7 @@
# THE SOFTWARE.
#
"""
u-msgpack-python v2.7.2 - v at sergeev.io
u-msgpack-python v2.8.0 - v at sergeev.io
https://github.com/vsergeev/u-msgpack-python
u-msgpack-python is a lightweight MessagePack serializer and deserializer
Expand All @@ -54,10 +54,10 @@
else:
from collections import Hashable

__version__ = "2.7.2"
__version__ = "2.8.0"
"Module version string"

version = (2, 7, 2)
version = (2, 8, 0)
"Module version tuple"


Expand Down

0 comments on commit 6a9aa1c

Please sign in to comment.