Skip to content

Commit 4e10c10

Browse files
authored
prepare for 1.0.6rc1 (#557)
1 parent 41d6239 commit 4e10c10

File tree

3 files changed

+17
-8
lines changed

3 files changed

+17
-8
lines changed

ChangeLog.rst

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
1.0.6rc1
2+
========
3+
4+
Release Date: 2023-09-13
5+
6+
* Add Python 3.12 wheels (#517)
7+
* Remove Python 2.7, 3.6, and 3.7 support
8+
9+
110
1.0.5
211
=====
312

msgpack/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
import os
55

66

7-
version = (1, 0, 5)
8-
__version__ = "1.0.6dev1"
7+
version = (1, 0, 6, "rc", 1)
8+
__version__ = "1.0.6rc1"
99

1010

1111
if os.environ.get("MSGPACK_PUREPYTHON"):

pyproject.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ license = {text="Apache 2.0"}
1414
authors = [{name="Inada Naoki", email="[email protected]"}]
1515
description = "MessagePack serializer"
1616
readme = "README.md"
17-
#keywords = ["python", "msgpack", "messagepack", "serializer", "serialization", "binary"]
18-
#requires-python = ">=3.8"
17+
keywords = ["msgpack", "messagepack", "serializer", "serialization", "binary"]
18+
requires-python = ">=3.8"
1919
classifiers = [
20-
# "Development Status :: 5 - Production/Stable",
21-
# "Operating System :: OS Independent",
22-
# "Programming Language :: Python",
20+
"Development Status :: 5 - Production/Stable",
21+
"Operating System :: OS Independent",
22+
"Programming Language :: Python",
2323
"Programming Language :: Python :: 3",
2424
"Programming Language :: Python :: 3.8",
2525
"Programming Language :: Python :: 3.9",
@@ -37,7 +37,7 @@ Homepage = "https://msgpack.org/"
3737
Documentation = "https://msgpack-python.readthedocs.io/"
3838
Repository = "https://github.com/msgpack/msgpack-python/"
3939
Tracker = "https://github.com/msgpack/msgpack-python/issues"
40-
#Changelog = "https://github.com/msgpack/msgpack-python/blob/main/ChangeLog.rst"
40+
Changelog = "https://github.com/msgpack/msgpack-python/blob/main/ChangeLog.rst"
4141

4242
[tool.setuptools.dynamic]
4343
version = {attr = "msgpack.__version__"}

0 commit comments

Comments
 (0)