From 826344ec533643fad068754e0b9799bfeac46634 Mon Sep 17 00:00:00 2001 From: Matthieu Dartiailh Date: Tue, 2 Feb 2021 20:45:38 +0100 Subject: [PATCH] release 0.12.0 --- bytecode/__init__.py | 2 +- doc/changelog.rst | 2 +- doc/conf.py | 5 ++--- setup.py | 4 +++- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/bytecode/__init__.py b/bytecode/__init__.py index 42154fae..2c269258 100644 --- a/bytecode/__init__.py +++ b/bytecode/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.12.0.dev" +__version__ = "0.12.0" __all__ = [ "Label", diff --git a/doc/changelog.rst b/doc/changelog.rst index 93e8fe69..f9e381e8 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -1,7 +1,7 @@ ChangeLog ========= -unreleased: Version 0.12.0 +02/02/2021: Version 0.12.0 -------------------------- New features: diff --git a/doc/conf.py b/doc/conf.py index 64a87768..615dce9f 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -44,7 +44,7 @@ # General information about the project. project = u"bytecode" -copyright = u"2016-2020, Victor Stinner" +copyright = u"2016-2021, Victor Stinner" # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -52,7 +52,7 @@ # # The short X.Y version. # The full version, including alpha/beta/rc tags. -version = release = "0.12.0.dev" +version = release = "0.12.0" # The language for content autogenerated by Sphinx. Refer to documentation @@ -256,4 +256,3 @@ # If true, do not generate a @detailmenu in the "Top" node's menu. # texinfo_no_detailmenu = False - diff --git a/setup.py b/setup.py index c1ea0bc2..1f558f34 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ # - git commit -a -m "post-release" # - git push -VERSION = "0.12.0.dev" +VERSION = "0.12.0" DESCRIPTION = "Python module to generate and modify bytecode" CLASSIFIERS = [ @@ -61,6 +61,8 @@ def main(): "url": "https://github.com/MatthieuDartiailh/bytecode", "author": "Victor Stinner", "author_email": "victor.stinner@gmail.com", + "maintainer": "Matthieu C. Dartiailh", + "maintainer_email": "m.dartiailh@gmail.com", "classifiers": CLASSIFIERS, "packages": ["bytecode", "bytecode.tests"], "install_requires": ['aenum >=2.0;python_version<"3.6"'],