Skip to content

Commit fbc2099

Browse files
committed
main: version v0.2.0
1 parent 95d8956 commit fbc2099

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
0.2.0
2+
---
3+
- **command line**
4+
- add version subcommand
5+
- **compiler**
6+
- fix a bug in floating point comparisons with NaN values
7+
- fix a bug when calling `panic` in package initialization code
8+
- add support for comparing `complex64` and `complex128`
9+
- **cgo**
10+
- add support for external globals
11+
- add support for pointers and function pointers
12+
- **standard library**
13+
- `fmt`: initial support, `fmt.Println` works
14+
- `math`: support for most/all functions
15+
- `os`: initial support (only stdin/stdout/stderr)
16+
- `reflect`: initial support
17+
- `syscall`: add support for amd64, arm, and arm64

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ package main
22

33
// version of this package.
44
// Update this value before release of new version of software.
5-
const version = "0.1.0"
5+
const version = "0.2.0"

0 commit comments

Comments
 (0)