From 15a32a4caff8001e4a156c939dcbb9ac50845685 Mon Sep 17 00:00:00 2001 From: Karol Stasiak Date: Sun, 28 Feb 2021 20:55:08 +0100 Subject: [PATCH] Version 0.3.26 --- CHANGELOG.md | 4 +++- COMPILING.md | 2 +- build.sbt | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 438bb54f..359e7d56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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). diff --git a/COMPILING.md b/COMPILING.md index 5642a621..8278d3fc 100644 --- a/COMPILING.md +++ b/COMPILING.md @@ -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 diff --git a/build.sbt b/build.sbt index 29a866f9..6636f2f6 100644 --- a/build.sbt +++ b/build.sbt @@ -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