Skip to content

Commit e4e94ac

Browse files
authored
changelog: fix typos
1 parent 046dd54 commit e4e94ac

File tree

1 file changed

+3
-11
lines changed

1 file changed

+3
-11
lines changed

CHANGELOG.md

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
## V 0.3.4
22
*30 Apr 2023*
3-
- **vweb now supports live page reloading**. The website is instantly updated in the browser (no need to refresh the page) everytime a .v or a .html file is changed.
3+
- **vweb now supports live page reloading**. The web app is instantly updated in the browser (no need to refresh the page) everytime a .v or a .html file is changed.
44
- vweb is now significantly faster and more stable under load, due to a new multithreaded worker pool, which is much more efficient at spreading the workload among all threads equally.
55
- Middleware support in vweb.
66
- vweb now supports controllers. It's now possible to have multiple app structs to better separate logic.
77
- vweb: overridable `.not_found()` method for custom 404 pages.
88
- A new pure WASM backend, based on binaryen, a WASM `builtin` module, and a pure V WASM serialization library.
9-
- Lots of playground improvements: play.vlang.io, including a really cool feature: "Show generated C code".
9+
- Lots of playground improvements: [play.vlang.io](https://play.vlang.io), including a really cool feature: "Show generated C code".
1010
- `v share file.v` for sharing code via the playground.
1111
- All ORM queries now return `![]` (`Result` of an array). This allows to handle/propagate DB errors and simplifies working with ORM (one way).
1212
- Many ORM improvements: type checks for `limit/offset/order by/where`; support of reference objects in `insert`; struct fields can be used with `limit/offset`; `Connection` interface.
@@ -24,7 +24,7 @@
2424
- Final steps in making the Option type a first class type.
2525
- Lots of documentation/readme improvements.
2626
- Option receivers can no longer have methods.
27-
- `none` can now be cast to all Option type, including aliases.
27+
- `none` can now be cast to all `Option` types, including aliases.
2828
- Enums can no longer be initialized like structs.
2929
- Builtin methods `first/last/repeat` can now be used in custom user types (previously they only worked in builtin arrays).
3030
- `v init` no longer overwrites existing `src/main.v`.
@@ -74,14 +74,6 @@
7474
- Assigning anonymous structs to named structs is no longer allowed.
7575

7676

77-
78-
79-
80-
81-
82-
83-
84-
8577
## V 0.3.3
8678
*30 Jan 2023*
8779
- String interpolation simplified to just '${name}', enforced by vfmt, and updated in the entire code base.

0 commit comments

Comments
 (0)