Skip to content

Commit

Permalink
Version 0.3.16
Browse files Browse the repository at this point in the history
  • Loading branch information
KarolS committed Apr 8, 2020
1 parent cd5e9de commit 5909c37
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 15 deletions.
24 changes: 12 additions & 12 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change log

## Current version
## 0.3.16 (2020-04-08)

* Language improvements:

Expand Down Expand Up @@ -74,7 +74,7 @@

* Updated to Scala 2.12.11.

## 0.3.14
## 0.3.14 (2019-12-03)

* Full assembly support for HuC6280.

Expand All @@ -90,7 +90,7 @@

* Other bug fixes.

## 0.3.12
## 0.3.12 (2019-11-06)

* **Breaking change!**
The `petscr`, `petscrjp` and `atasciiscr` encodings now use $E0, $E0 and $DB respectively as their string terminator.
Expand All @@ -114,7 +114,7 @@ Changed the identifiers for various subtypes of the 65C02 processors.

* Other bugfixes

## 0.3.10
## 0.3.10 (2019-10-24)

* Preliminary support for the CPU from ZX Spectrum Next.

Expand Down Expand Up @@ -154,7 +154,7 @@ Changed the identifiers for various subtypes of the 65C02 processors.

* Added another NES example (thanks to @Garydos).

## 0.3.8
## 0.3.8 (2019-06-21)

* `sizeof` now supports arrays.

Expand Down Expand Up @@ -190,7 +190,7 @@ Changed the identifiers for various subtypes of the 65C02 processors.

* 6502: Inlining improvements.

## 0.3.6
## 0.3.6 (2019-08-05)

* **Breaking change!**
The `petscii` encoding now uses the $C0-$DE range for uppercase characters instead of $60-$7E.
Expand Down Expand Up @@ -252,7 +252,7 @@ This matches both the CC65 behaviour and the return values from `readkey()`.

* Other fixes and improvements.

## 0.3.4
## 0.3.4 (2019-07-01)

* Preliminary experimental Game Boy support.

Expand Down Expand Up @@ -349,7 +349,7 @@ can no longer be read before an explicit call to `init_rw_memory`, either add th

* Optimization improvements.

## 0.3.2
## 0.3.2 (2018-12-28)

* Almost complete support for the Zilog Z80, Intel 8080 and Sharp LR35902 microprocessors.

Expand Down Expand Up @@ -422,7 +422,7 @@ Code that uses a custom platform definitions will cause extra warnings until fix

* Other improvements.

## 0.3.0
## 0.3.0 (2018-06-25)

* Finally faster than C.

Expand Down Expand Up @@ -454,7 +454,7 @@ Code that uses a custom platform definitions will cause extra warnings until fix

* Other improvements.

## 0.2.2
## 0.2.2 (2018-03-19)

* Allowed adding constant words to variable bytes without the zeropage pseudoregister.

Expand All @@ -466,7 +466,7 @@ Code that uses a custom platform definitions will cause extra warnings until fix

* Other improvements.

## 0.2
## 0.2 (2018-03-17)

* **Breaking change!** Renamed `inline` to `macro`.

Expand Down Expand Up @@ -515,6 +515,6 @@ Detailed flow analysis was slow, broken, hard to maintain, and didn't even help

* Other improvements.

## 0.1
## 0.1 (2018-01-24)

* Initial numbered version.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.14).
(latest: 0.3.16).
For build instructions, see [Build instructions](./COMPILING.md).

## Features
Expand Down Expand Up @@ -36,7 +36,7 @@ For build instructions, see [Build instructions](./COMPILING.md).

* reasonably well supported: Sharp LR35902, CSG 65CE02

* partially supported: Hudson Soft HuC6280, WDC 65816, Intel 8086
* partially supported: Hudson Soft HuC6280, WDC 65816, Intel 8086, Motorola 6809

* inline assembly

Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name := "millfork"

version := "0.3.15-SNAPSHOT"
version := "0.3.16"

scalaVersion := "2.12.11"

Expand Down
2 changes: 2 additions & 0 deletions examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
The examples showcased here are designed to compile with a compiler built from newest sources.
If you are using a release version of the compiler, consider browsing the older versions of the examples:

* [for version 0.3.16](https://github.com/KarolS/millfork/tree/v0.3.16/examples)

* [for version 0.3.14](https://github.com/KarolS/millfork/tree/v0.3.14/examples)

* [for version 0.3.12](https://github.com/KarolS/millfork/tree/v0.3.12/examples)
Expand Down

0 comments on commit 5909c37

Please sign in to comment.