prepare for 1.0.6rc1 (#557)

This commit is contained in:
Inada Naoki 2023-09-13 18:40:04 +09:00 committed by GitHub
parent 41d6239c0a
commit 4e10c10aaa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 17 additions and 8 deletions

View file

@ -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 1.0.5
===== =====

View file

@ -4,8 +4,8 @@ from .ext import ExtType, Timestamp
import os import os
version = (1, 0, 5) version = (1, 0, 6, "rc", 1)
__version__ = "1.0.6dev1" __version__ = "1.0.6rc1"
if os.environ.get("MSGPACK_PUREPYTHON"): if os.environ.get("MSGPACK_PUREPYTHON"):

View file

@ -14,12 +14,12 @@ license = {text="Apache 2.0"}
authors = [{name="Inada Naoki", email="songofacandy@gmail.com"}] authors = [{name="Inada Naoki", email="songofacandy@gmail.com"}]
description = "MessagePack serializer" description = "MessagePack serializer"
readme = "README.md" readme = "README.md"
#keywords = ["python", "msgpack", "messagepack", "serializer", "serialization", "binary"] keywords = ["msgpack", "messagepack", "serializer", "serialization", "binary"]
#requires-python = ">=3.8" requires-python = ">=3.8"
classifiers = [ classifiers = [
# "Development Status :: 5 - Production/Stable", "Development Status :: 5 - Production/Stable",
# "Operating System :: OS Independent", "Operating System :: OS Independent",
# "Programming Language :: Python", "Programming Language :: Python",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.9",
@ -37,7 +37,7 @@ Homepage = "https://msgpack.org/"
Documentation = "https://msgpack-python.readthedocs.io/" Documentation = "https://msgpack-python.readthedocs.io/"
Repository = "https://github.com/msgpack/msgpack-python/" Repository = "https://github.com/msgpack/msgpack-python/"
Tracker = "https://github.com/msgpack/msgpack-python/issues" 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] [tool.setuptools.dynamic]
version = {attr = "msgpack.__version__"} version = {attr = "msgpack.__version__"}