Skip to content

Commit

Permalink
bump version to 0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
spytheman committed Feb 27, 2025
1 parent 154017b commit 532bebd
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 7 deletions.
16 changes: 14 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# v-analyser Changelog

## [0.0.6] - 2025/02/27
Sixth public release.

This release contains mainly installation issue fixes.
You can now install it on all platforms, using an uniform command:
`v download -RD https://raw.githubusercontent.com/vlang/v-analyzer/main/install.vsh`
It also has improvements to the diagnostic output of the build and install scripts.
V-analyzer has also been fixed to compile with the latest and stricter V versions.
The last notable change is the upgrade of our tree_sitter bindings.

## [0.0.5] - 2024/11/13
Fifth public release.

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

### Documentation:
∙ docs: update README.md with more detailed instructions about how to clone the project locally, fix `v check-md` warnings
∙ docs: update README.md with more detailed instructions about
how to clone the project locally, fix `v check-md` warnings
∙ docs: fix for Neovim LSP/Mason (#122)
∙ docs: fix typo in readme
∙ docs: make submodule info in readme better visible and its commands easier to copy
Expand Down
2 changes: 1 addition & 1 deletion editors/code/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "V language support (syntax highlighting, formatter, language server) for Visual Studio Code.",
"publisher": "VOSCA",
"icon": "icons/icon.png",
"version": "0.0.5",
"version": "0.0.6",
"engines": {
"vscode": "^1.66.0"
},
Expand Down
2 changes: 1 addition & 1 deletion install.vsh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import compress.szip
import cli
import net.http

const installer_version = '0.0.5'
const installer_version = '0.0.6'
const analyzer_config_dir_path = join_path(home_dir(), '.config', 'v-analyzer')
const analyzer_sources_dir_path = join_path(analyzer_config_dir_path, 'sources')
const analyzer_bin_dir_path = join_path(analyzer_config_dir_path, 'bin')
Expand Down
2 changes: 1 addition & 1 deletion tree_sitter_v/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tree-sitter-v",
"version": "0.0.5",
"version": "0.0.6",
"main": "bindings/node",
"types": "bindings/node",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion tree_sitter_v/tree-sitter.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
}
],
"metadata": {
"version": "0.0.5",
"version": "0.0.6",
"license": "MIT",
"description": "v grammar for tree-sitter",
"links": {
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-analyzer'
description: 'Language server implementation for the V (vlang) programming language'
version: '0.0.5'
version: '0.0.6'
license: 'MIT'
dependencies: []
}

0 comments on commit 532bebd

Please sign in to comment.