Этот коммит содержится в:
Ayke van Laethem 2019-02-08 16:54:50 +01:00
родитель 95d895646a
коммит fbc2099ee3
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: E97FF5335DFDFDED
2 изменённых файлов: 18 добавлений и 1 удалений

17
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

Просмотреть файл

@ -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"