diff options
author | Ayke van Laethem <[email protected]> | 2019-02-08 16:54:50 +0100 |
---|---|---|
committer | Ayke van Laethem <[email protected]> | 2019-02-08 16:54:50 +0100 |
commit | fbc2099ee3ae0017a4834607db49e38e9943f18a (patch) | |
tree | 230f96872c6c67b37ce0b16f4a769ba8845b2bce | |
parent | 95d895646a8005dc2afed425061865034a73450b (diff) | |
download | tinygo-0.2.0.tar.gz tinygo-0.2.0.zip |
main: version v0.2.0v0.2.0
-rw-r--r-- | CHANGELOG.md | 17 | ||||
-rw-r--r-- | version.go | 2 |
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" |