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

changelog: fix wording about backends and C++20 support (#18097)

This commit is contained in:
Petr Makhnev 2023-05-02 16:26:19 +04:00 committed by GitHub
parent c4cce3bc00
commit c8568a29dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,7 +31,7 @@
- Anonymous fn params can no longer be shadowed. - Anonymous fn params can no longer be shadowed.
- Channel pop now works with an `or` block: `ch := <-self.item or { return none }` - Channel pop now works with an `or` block: `ch := <-self.item or { return none }`
- Option references are now supported: `?&Type`. - Option references are now supported: `?&Type`.
- C++20 standard support in the C++ backend. - Now code generated by the С backend, can be compiled by a C++20 compiler.
- `v self` now uses a faster tcc backend on macOS/Apple Silicon, just like on Windows/Linux. - `v self` now uses a faster tcc backend on macOS/Apple Silicon, just like on Windows/Linux.
- `os.hostname()` and `os.loginname()` now return `Result`. - `os.hostname()` and `os.loginname()` now return `Result`.
- The "Is V still fast?" web page has been sped up by splitting the results table into multiple years. - The "Is V still fast?" web page has been sped up by splitting the results table into multiple years.