Skip to content

Commit

Permalink
V 0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
medvednikov committed Jan 30, 2023
1 parent 62f7e56 commit d1f57ea
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 9 deletions.
26 changes: 24 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,33 @@
## V 0.3.3
*Not yet released*
*30 Jan 2023*
**wip**
- Accessing a pointer map value requires an `or {}` block outside `unsafe`.
- `math.vec` module for generic vector math.
- `go foo()` has been replaced with `spawn foo()` (launches an OS thread, `go` will be used for
upcoming coroutines instead).
- vfmt now supports `// vfmt off` and `// vfmt on` for turning off the formatting locally for *short* snippets of code. Useful for keeping your carefully arranged matrices intact.
- vfmt now supports `// vfmt off` and `// vfmt on` for turning off the formatting locally for short snippets of code.
Useful for keeping your carefully arranged matrices intact.
- fast.vlang.io fixes & improvements, new server.
- String interpolation changed to just '${name}'.
- New official IntelliJ plugin: https://intellij-v.github.io.
- Lots of fixes in the type checker.
- Match branch range expressions with consts: `match x { const1...const2 {} }`
- Builtin stb_image.h used by gg has been updated to the latest v2.28.
- Lots of new documentation, a nicer table of contents.
- All of vlib has been updated to use separate Option/Result types.
- To avoid confusion, all references in the code and documentation to `Optional` have been replaced with `Option`.
- `gg.Context` pipeile has more effects, including the `additive` effect.
- Hot code reloading via `[live]` is now supported in imported modules, not just the main module.
- VFS support in the builtin `sqlite` module; `sqlite.get_affected_rows_count()`.
- `make.bat` & `v up` improvements on Windows.
- Syntax sugar for map inits without needing explicit casts for interfaces: `all.children := { "abc": rect, "def": ui.rectangle()}`.
- `$embed_file()` fixes, including variable args support.
- `none` fixes: no longer allowed to be used as a separate type, `dump()` support, not allowed inside `unsafe`.
- Much cleaner eof checks in `os`: refactor `err == IError(os.Eof{})` to `err is os.Eof`.
- Const functions: `const y = term.yellow`, then `println(y('abc'))`.
- Lots of work on `x.json2`, the pure V json encoder, soon to become official.



## V 0.3.2
*31 Oct 2022*
Expand Down
2 changes: 1 addition & 1 deletion v.mod
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Module {
name: 'V'
description: 'The V programming language.'
version: '0.3.2'
version: '0.3.3'
license: 'MIT'
repo_url: 'https://github.com/vlang/v'
dependencies: []
Expand Down
2 changes: 1 addition & 1 deletion vlib/semver/v.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Module {
name: 'semver'
version: '0.3.2'
version: '0.3.3'
deps: []
}
2 changes: 1 addition & 1 deletion vlib/v/pkgconfig/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ The commandline tool is available in `vlib/v/pkgconfig/bin/pkgconfig.v`

```
$ ./bin/pkgconfig -h
pkgconfig 0.3.2
pkgconfig 0.3.3
-----------------------------------------------
Usage: pkgconfig [options] [ARGS]
Expand Down
2 changes: 1 addition & 1 deletion vlib/v/pkgconfig/pkgconfig.v
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const (
'/usr/local/libdata/pkgconfig', // FreeBSD
'/usr/lib/i386-linux-gnu/pkgconfig', // Debian 32bit
]
version = '0.3.2'
version = '0.3.3'
)

pub struct Options {
Expand Down
2 changes: 1 addition & 1 deletion vlib/v/util/version/version.v
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module version

import os

pub const v_version = '0.3.2'
pub const v_version = '0.3.3'

// vhash() returns the build string C.V_COMMIT_HASH . See cmd/tools/gen_vc.v .
pub fn vhash() string {
Expand Down
4 changes: 2 additions & 2 deletions vlib/v/vmod/parser_test.v
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ fn test_ok() {
ok_source := "Module {
name: 'V'
description: 'The V programming language.'
version: '0.3.2'
version: '0.3.3'
license: 'MIT'
repo_url: 'https://github.com/vlang/v'
dependencies: []
Expand All @@ -18,7 +18,7 @@ fn test_ok() {
content := vmod.decode(s)?
assert content.name == 'V'
assert content.description == 'The V programming language.'
assert content.version == '0.3.2'
assert content.version == '0.3.3'
assert content.license == 'MIT'
assert content.repo_url == 'https://github.com/vlang/v'
assert content.dependencies == []
Expand Down

0 comments on commit d1f57ea

Please sign in to comment.