Version 0.3.26

This commit is contained in:
Karol Stasiak 2021-02-28 20:55:08 +01:00
parent e8f5667faa
commit 15a32a4caf
3 changed files with 6 additions and 3 deletions

View File

@ -1,6 +1,8 @@
# Change log
## Current version
## 0.3.26 (2021-03-01)
* Array fields in structs.
* Various Apple II-related improvements, including ProDOS support (thanks to @retrac0).

View File

@ -57,7 +57,7 @@ Test suite is useful if you plan on modifying the compiler. Some test dependenci
* run `sbt compile` to compile the project
* run `sbt assemble` to build the executable jar file, it should appear in `target/scala-2.12`
* run `sbt assembly` to build the executable jar file, it should appear in `target/scala-2.12`
### Building a native executable

View File

@ -1,7 +1,8 @@
name := "millfork"
version := "0.3.25-SNAPSHOT"
version := "0.3.26"
// keep it at 2.12.11 for GraalVM native image compatibility!
scalaVersion := "2.12.11"
resolvers += Resolver.mavenLocal