1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

V 0.1.3 changelog

This commit is contained in:
Alexander Medvednikov 2019-07-10 09:19:30 +02:00 committed by GitHub
parent e1ddac1590
commit 1b24253d8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,3 +1,14 @@
# V 0.1.13
- New enum syntax (`token == .name`), enum values are no longer global consts
- Submodules (`import encoding.base64`)
- Hot code reloading
- Special `err` variable for getting error values
- Complex numbers
- `<<` can now append arrays (`numbers << [1, 2, 3]`)
- Lots of Windows fixes (Windows still needs some work)
- Lots of REPL improvements (e.g. `>> 2 + 3` works no, no `println` required)
# V 0.1.12
- V can finally compile itself on Windows. (https://github.com/vlang/v#mingw-w64)
- `os` module now uses optionals in all functions that return `File`. Lots of bugs with optionals fixed.
@ -6,6 +17,7 @@
- New `strings` module.
- Lots of other fixes and improvements, thanks to all the contributors.
# V 0.1.11
- Cross compilation for Windows!