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

Prepare 0.18 release

This commit is contained in:
Mike Naberezny 2014-01-30 15:19:30 -08:00
parent 2f524dd2bd
commit 7435c43fda
3 changed files with 8 additions and 4 deletions

View File

@ -1,4 +1,4 @@
0.18-dev (Next Release)
0.18 (2014-01-30)
- Fixed a bug in RTS where popping $FFFF off the stack would cause
the program counter to overflow to $10000. It now wraps around
@ -9,6 +9,10 @@
- Assembling now tolerates extra whitespace between opcode and operand.
- Removed page wrap bug from JMP indirect on 65C02.
- Removed page wrap bug from indexed indirect (X) operations on 65C02.
0.17 (2013-10-26)
- Added support for Python 3.2 and 3.3 based on work by David Beazley.

View File

@ -51,9 +51,9 @@ copyright = u'2008-%d, Mike Naberezny and contributors' % year
# built documents.
#
# The short X.Y version.
version = '0.18-dev'
version = '0.18'
# The full version, including alpha/beta/rc tags.
release = '0.18-dev'
release = '0.18'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

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