1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-06-25 19:29:49 +00:00

Version 0.3.12

This commit is contained in:
Karol Stasiak 2019-11-06 14:42:48 +01:00
parent 3b5006bc30
commit 02be0a8c7d
3 changed files with 6 additions and 3 deletions

View File

@ -1,10 +1,13 @@
# Change log
## Current version
## 0.3.12
* **Breaking change!**
The `petscr`, `petscrjp` and `atasciiscr` encodings now use $E0 and $DB respectively as their string terminator.
* **Potentially breaking change!**
Changed the identifiers for various subtypes of the 65C02 processors.
* Added `nullchar_scr` and `NULLCHAR_SCR`
* Added the `scrstring` module

View File

@ -5,7 +5,7 @@
A middle-level programming language targeting 6502-based, 8080-based and Z80-based microcomputers.
For binary releases, see: [https://github.com/KarolS/millfork/releases](https://github.com/KarolS/millfork/releases)
(latest: 0.3.10).
(latest: 0.3.12).
For build instructions, see [Build instructions](./COMPILING.md).
## Features

View File

@ -1,6 +1,6 @@
name := "millfork"
version := "0.3.11-SNAPSHOT"
version := "0.3.12"
scalaVersion := "2.12.10"