Skip to content

Commit

Permalink
Changelog update
Browse files Browse the repository at this point in the history
  • Loading branch information
Fubukimaru committed Dec 7, 2020
1 parent f39c149 commit a2f37e0
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# version 1.0.0: [07/12/2020]

- Updated Readme, Changelog and Documentation (Thanks to @jamque Pull request #71 )
- When we use reserved keywords as labels, we state it as `reserved word used as identifier`. Issue #70
- MegaROM undefined page message improved.
- We dont' allow `(whatever character)REPT` anymore. Only `REPT` or `.REPT`.
- `PSEUDO_DS` now doesn't check if there is a memory overflow in the first pass. This prevents it to crash in presence of undefined labels and report wrong error message. Issue #62
- Added `.ZILOG 0` pseudo. Now we can enable and disable zilog standard parsing. Note: this needs more checking between passes. (Thanks to @duhow Pull request #72)
- Improved argument handling (Thanks to @duhow Issue #60)
- Windows tester works again (Thanks to @duhow)
- Makefile improvements (Thanks to @duhow)

# v.1.0 beta: [01/12/2020]

- Finally the NOP bug has been fixed. This is the main reason we go to version 1.0 beta.
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
all: asmsx

VERSION_STATIC = 1.0.0-beta
VERSION_STATIC = 1.0.0
DATE_STATIC = 2020-12-01

VERSION := $(if $(shell git status 2>/dev/null),$(shell git describe --tags --always 2>/dev/null),$(VERSION_STATIC))
Expand Down

0 comments on commit a2f37e0

Please sign in to comment.