aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md17
-rw-r--r--version.go2
2 files changed, 18 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 000000000..3e233171b
--- /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 7ad5c73c4..1b7fb01e5 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"