Skip to content

Commit

Permalink
prepare release 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthieuDartiailh committed Feb 2, 2020
1 parent 119e75a commit 6f9a31d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 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.10.0.dev'
__version__ = '0.10.0'

__all__ = ['Label', 'Instr', 'SetLineno', 'Bytecode',
'ConcreteInstr', 'ConcreteBytecode',
Expand Down
10 changes: 5 additions & 5 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
ChangeLog
=========

unreleased: Version 0.10.0
-------------------------
2020-02-02: Version 0.10.0
--------------------------

New features:

- Slices and copy of :class:`Bytecode`, :class:`ConcreteBytecode` and
- Slices and copy of :class:`Bytecode`, :class:`ConcreteBytecode` and
:class:`BasicBlock` are now of the same type as the original container. PR #52
- :class:`Bytecode`, :class:`ConcreteBytecode`, :class:`BasicBlock` and
:class:`ControlFlowGraph` have a new :meth:`legalize` method validating
- :class:`Bytecode`, :class:`ConcreteBytecode`, :class:`BasicBlock` and
:class:`ControlFlowGraph` have a new :meth:`legalize` method validating
their content and removing SetLineno. PR #52
- Modify the implementation of :code:`const_key` to avoid manual
synchronizations with :code:`_PyCode_ConstantKey` in CPython codebase and
Expand Down
4 changes: 2 additions & 2 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-2018, Victor Stinner'
copyright = u'2016-2020, 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.10.0.dev'
version = release = '0.10.0'


# The language for content autogenerated by Sphinx. Refer to documentation
Expand Down
2 changes: 1 addition & 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.10.0.dev'
VERSION = '0.10.0'

DESCRIPTION = 'Python module to generate and modify bytecode'
CLASSIFIERS = [
Expand Down

0 comments on commit 6f9a31d

Please sign in to comment.