Skip to content

Commit 6a9aa1c

Browse files
committed
update version and changelog to v2.8.0
1 parent 6a2b4a3 commit 6a9aa1c

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
* Version 2.8.0 - 05/18/2023
2+
* Migrate module to package.
3+
* Migrate documentation to Sphinx.
4+
* Improve types and formatting in docstrings.
5+
* Add type stubs.
6+
17
* Version 2.7.2 - 11/07/2022
28
* Fix hex formatting of data bytes in Ext string representation.
39
* Contributors

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
project = 'u-msgpack-python'
2222
copyright = '2013-2023, Vanya A. Sergeev'
2323
author = 'Vanya A. Sergeev'
24-
release = '2.7.2'
24+
release = '2.8.0'
2525

2626
# -- General configuration ---------------------------------------------------
2727
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name='u-msgpack-python',
8-
version='2.7.2',
8+
version='2.8.0',
99
description='A portable, lightweight MessagePack serializer and deserializer written in pure Python.',
1010
author='vsergeev',
1111
author_email='v@sergeev.io',

umsgpack/__init__.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# u-msgpack-python v2.7.2 - v at sergeev.io
1+
# u-msgpack-python v2.8.0 - v at sergeev.io
22
# https://github.com/vsergeev/u-msgpack-python
33
#
44
# u-msgpack-python is a lightweight MessagePack serializer and deserializer
@@ -31,7 +31,7 @@
3131
# THE SOFTWARE.
3232
#
3333
"""
34-
u-msgpack-python v2.7.2 - v at sergeev.io
34+
u-msgpack-python v2.8.0 - v at sergeev.io
3535
https://github.com/vsergeev/u-msgpack-python
3636
3737
u-msgpack-python is a lightweight MessagePack serializer and deserializer
@@ -54,10 +54,10 @@
5454
else:
5555
from collections import Hashable
5656

57-
__version__ = "2.7.2"
57+
__version__ = "2.8.0"
5858
"Module version string"
5959

60-
version = (2, 7, 2)
60+
version = (2, 8, 0)
6161
"Module version tuple"
6262

6363

0 commit comments

Comments
 (0)