From fbc2099ee3ae0017a4834607db49e38e9943f18a Mon Sep 17 00:00:00 2001 From: Ayke van Laethem Date: Fri, 8 Feb 2019 16:54:50 +0100 Subject: [PATCH] main: version v0.2.0 --- CHANGELOG.md | 17 +++++++++++++++++ version.go | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..3e233171 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,17 @@ +0.2.0 +--- +- **command line** + - add version subcommand +- **compiler** + - fix a bug in floating point comparisons with NaN values + - fix a bug when calling `panic` in package initialization code + - add support for comparing `complex64` and `complex128` +- **cgo** + - add support for external globals + - add support for pointers and function pointers +- **standard library** + - `fmt`: initial support, `fmt.Println` works + - `math`: support for most/all functions + - `os`: initial support (only stdin/stdout/stderr) + - `reflect`: initial support + - `syscall`: add support for amd64, arm, and arm64 diff --git a/version.go b/version.go index 7ad5c73c..1b7fb01e 100644 --- a/version.go +++ b/version.go @@ -2,4 +2,4 @@ package main // version of this package. // Update this value before release of new version of software. -const version = "0.1.0" +const version = "0.2.0"