1
0
mirror of https://github.com/mnaberez/py65.git synced 2024-06-29 09:29:36 +00:00

Prepare 0.10 release

This commit is contained in:
Mike Naberezny 2011-08-27 13:36:54 -07:00
parent 624b828796
commit 3170df9e56
3 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
0.10-dev *Next release* 0.10 (2011-08-27)
- Fixed long-standing bugs in relative branch calculations in the - Fixed long-standing bugs in relative branch calculations in the
assembler and disassembler. Based on a patch by Ed Spittles. assembler and disassembler. Based on a patch by Ed Spittles.

View File

@ -39,16 +39,16 @@ master_doc = 'index'
# General information about the project. # General information about the project.
project = u'Py65' project = u'Py65'
copyright = u'2008, Mike Naberezny' copyright = u'2008-2011, Mike Naberezny'
# The version info for the project you're documenting, acts as replacement for # The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the # |version| and |release|, also used in various other places throughout the
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = '0.3' version = '0.10'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '0.3' release = '0.10'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.

View File

@ -1,4 +1,4 @@
__version__ = '0.10-dev' __version__ = '0.10'
import os import os
import sys import sys