1
0
mirror of https://github.com/mnaberez/py65.git synced 2025-01-04 16:30:42 +00:00

Back to -dev until next release

This commit is contained in:
Mike Naberezny 2013-01-06 16:33:16 -08:00
parent 0fbf0a803b
commit 0684002385
3 changed files with 6 additions and 4 deletions

View File

@ -1,4 +1,6 @@
0.15 (2012-01-06) 0.16 (Next Release)
0.15 (2013-01-06)
- Disassembling can now wrap around memory if the start address - Disassembling can now wrap around memory if the start address
given is greater than the end address. given is greater than the end address.

View File

@ -49,9 +49,9 @@ copyright = u'2008-2013, Mike Naberezny'
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = '0.15' version = '0.16-dev'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '0.15' release = '0.16-dev'
# 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.15' __version__ = '0.16-dev'
import os import os
import sys import sys