Skip to content

Commit 6042204

Browse files
authored
chore: bump version to v0.3.0 (#76)
1 parent 0742565 commit 6042204

File tree

3 files changed

+38
-2
lines changed

3 files changed

+38
-2
lines changed

CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,42 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.3.0] - 22.07.2025
6+
7+
### Added
8+
9+
#### Tolk
10+
11+
- feat(tolk/documentation): support inline field comments in https://github.com/ton-blockchain/ton-language-server/pull/64
12+
- feat(tolk/inspections): add `NeedNotNullUnwrapping` inspection in https://github.com/ton-blockchain/ton-language-server/pull/72
13+
14+
#### Func
15+
16+
- feat(func/lens): add code lens for integer string literals like `"..."c` for FunC in https://github.com/ton-blockchain/ton-language-server/pull/63
17+
- feat(func/resolving): support catch variables resolving and find references in https://github.com/ton-blockchain/ton-language-server/pull/65
18+
- feat(func/inlay-hints): show implicit constant types in https://github.com/ton-blockchain/ton-language-server/pull/67
19+
20+
### Fixed
21+
22+
#### Tolk
23+
24+
- fix(tolk): don't add `;` for imports in https://github.com/ton-blockchain/ton-language-server/pull/49
25+
- fix(tolk/completion): don't show type parameter in value completion in https://github.com/ton-blockchain/ton-language-server/pull/69
26+
- fix(tolk/completion): don't add `;` for top level declaration in completion in https://github.com/ton-blockchain/ton-language-server/pull/74
27+
28+
#### FunC
29+
30+
- fix(func/resolving): fix resolving for tensor/tuple variables with underscore in https://github.com/ton-blockchain/ton-language-server/pull/68
31+
- fix(func/grammar): accept `<` and `>` as part of identifier in https://github.com/ton-blockchain/ton-language-server/pull/70
32+
- fix(func/documentation): correctly show constant value in hover documentation in https://github.com/ton-blockchain/ton-language-server/pull/71
33+
- fix(func/inspections): disable unused import inspection for now in https://github.com/ton-blockchain/ton-language-server/pull/75
34+
35+
### Other
36+
37+
- feat(ci): add auto mirroring for Tolk tree-sitter grammar in https://github.com/ton-blockchain/ton-language-server/pull/12
38+
- chore: bump tolkfmt to 0.0.13 in https://github.com/ton-blockchain/ton-language-server/pull/47
39+
- refactor(tree-sitter-tolk): improve overall tree-sitter-tolk description in https://github.com/ton-blockchain/ton-language-server/pull/48
40+
541
## [0.2.0] - 14.07.2025
642

743
This release is dedicated to FunC and Tolk.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"BoC",
1313
"TL-B"
1414
],
15-
"version": "0.2.0",
15+
"version": "0.3.0",
1616
"engines": {
1717
"vscode": "^1.63.0"
1818
},

package.server.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ton-language-server",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"description": "Language Server for the TON Blockchain",
55
"main": "server.js",
66
"keywords": [

0 commit comments

Comments
 (0)