Skip to content

Commit 532bebd

Browse files
committed
bump version to 0.0.6
1 parent 154017b commit 532bebd

File tree

6 files changed

+19
-7
lines changed

6 files changed

+19
-7
lines changed

CHANGELOG.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# v-analyser Changelog
22

3+
## [0.0.6] - 2025/02/27
4+
Sixth public release.
5+
6+
This release contains mainly installation issue fixes.
7+
You can now install it on all platforms, using an uniform command:
8+
`v download -RD https://raw.githubusercontent.com/vlang/v-analyzer/main/install.vsh`
9+
It also has improvements to the diagnostic output of the build and install scripts.
10+
V-analyzer has also been fixed to compile with the latest and stricter V versions.
11+
The last notable change is the upgrade of our tree_sitter bindings.
12+
313
## [0.0.5] - 2024/11/13
414
Fifth public release.
515

@@ -26,7 +36,8 @@ Fifth public release.
2636
∙ analyzer: support shebang syntax (#34)
2737
∙ analyzer: add inline struct field comments (#52)
2838
∙ analyzer: use build version aware caching (#57)
29-
∙ analyzer: update parser.c to align with the current development state (#13), fixes highlighting for code in between 2 block comments
39+
∙ analyzer: update parser.c to align with the current development state (#13),
40+
fixes highlighting for code in between 2 block comments
3041
∙ build: follow a default directory structure for V projects (#25)
3142
∙ build: update install.vsh to make repeated usage of path expand fn obsolete (#24)
3243
∙ install: add debug and dev binaries install (#60)
@@ -62,7 +73,8 @@ Fifth public release.
6273
∙ tree_sitter: add sum type to tree node (#87)
6374

6475
### Documentation:
65-
∙ docs: update README.md with more detailed instructions about how to clone the project locally, fix `v check-md` warnings
76+
∙ docs: update README.md with more detailed instructions about
77+
how to clone the project locally, fix `v check-md` warnings
6678
∙ docs: fix for Neovim LSP/Mason (#122)
6779
∙ docs: fix typo in readme
6880
∙ docs: make submodule info in readme better visible and its commands easier to copy

editors/code/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "V language support (syntax highlighting, formatter, language server) for Visual Studio Code.",
55
"publisher": "VOSCA",
66
"icon": "icons/icon.png",
7-
"version": "0.0.5",
7+
"version": "0.0.6",
88
"engines": {
99
"vscode": "^1.66.0"
1010
},

install.vsh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import compress.szip
99
import cli
1010
import net.http
1111

12-
const installer_version = '0.0.5'
12+
const installer_version = '0.0.6'
1313
const analyzer_config_dir_path = join_path(home_dir(), '.config', 'v-analyzer')
1414
const analyzer_sources_dir_path = join_path(analyzer_config_dir_path, 'sources')
1515
const analyzer_bin_dir_path = join_path(analyzer_config_dir_path, 'bin')

tree_sitter_v/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tree-sitter-v",
3-
"version": "0.0.5",
3+
"version": "0.0.6",
44
"main": "bindings/node",
55
"types": "bindings/node",
66
"license": "MIT",

tree_sitter_v/tree-sitter.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
}
1414
],
1515
"metadata": {
16-
"version": "0.0.5",
16+
"version": "0.0.6",
1717
"license": "MIT",
1818
"description": "v grammar for tree-sitter",
1919
"links": {

v.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Module {
22
name: 'v-analyzer'
33
description: 'Language server implementation for the V (vlang) programming language'
4-
version: '0.0.5'
4+
version: '0.0.6'
55
license: 'MIT'
66
dependencies: []
77
}

0 commit comments

Comments
 (0)