Skip to content

Commit

Permalink
prepare for 1.0.6rc1 (#557)
Browse files Browse the repository at this point in the history
  • Loading branch information
methane committed Sep 13, 2023
1 parent 41d6239 commit 4e10c10
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 8 deletions.
9 changes: 9 additions & 0 deletions ChangeLog.rst
@@ -1,3 +1,12 @@
1.0.6rc1
========

Release Date: 2023-09-13

* Add Python 3.12 wheels (#517)
* Remove Python 2.7, 3.6, and 3.7 support


1.0.5
=====

Expand Down
4 changes: 2 additions & 2 deletions msgpack/__init__.py
Expand Up @@ -4,8 +4,8 @@
import os


version = (1, 0, 5)
__version__ = "1.0.6dev1"
version = (1, 0, 6, "rc", 1)
__version__ = "1.0.6rc1"


if os.environ.get("MSGPACK_PUREPYTHON"):
Expand Down
12 changes: 6 additions & 6 deletions pyproject.toml
Expand Up @@ -14,12 +14,12 @@ license = {text="Apache 2.0"}
authors = [{name="Inada Naoki", email="songofacandy@gmail.com"}]
description = "MessagePack serializer"
readme = "README.md"
#keywords = ["python", "msgpack", "messagepack", "serializer", "serialization", "binary"]
#requires-python = ">=3.8"
keywords = ["msgpack", "messagepack", "serializer", "serialization", "binary"]
requires-python = ">=3.8"
classifiers = [
# "Development Status :: 5 - Production/Stable",
# "Operating System :: OS Independent",
# "Programming Language :: Python",
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand All @@ -37,7 +37,7 @@ Homepage = "https://msgpack.org/"
Documentation = "https://msgpack-python.readthedocs.io/"
Repository = "https://github.com/msgpack/msgpack-python/"
Tracker = "https://github.com/msgpack/msgpack-python/issues"
#Changelog = "https://github.com/msgpack/msgpack-python/blob/main/ChangeLog.rst"
Changelog = "https://github.com/msgpack/msgpack-python/blob/main/ChangeLog.rst"

[tool.setuptools.dynamic]
version = {attr = "msgpack.__version__"}
Expand Down

0 comments on commit 4e10c10

Please sign in to comment.