Skip to content

Commit

Permalink
release 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthieuDartiailh committed Feb 2, 2021
1 parent f8dda59 commit 826344e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bytecode/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.12.0.dev"
__version__ = "0.12.0"

__all__ = [
"Label",
Expand Down
2 changes: 1 addition & 1 deletion doc/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ChangeLog
=========

unreleased: Version 0.12.0
02/02/2021: Version 0.12.0
--------------------------

New features:
Expand Down
5 changes: 2 additions & 3 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@

# 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
# built documents.
#
# 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
Expand Down Expand Up @@ -256,4 +256,3 @@

# If true, do not generate a @detailmenu in the "Top" node's menu.
# texinfo_no_detailmenu = False

4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down Expand Up @@ -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"'],
Expand Down

0 comments on commit 826344e

Please sign in to comment.