Skip to content

Commit 31862a5

Browse files
authored
chore: bump version to v0.7.1 (#656)
1 parent 1220a80 commit 31862a5

File tree

3 files changed

+39
-2
lines changed

3 files changed

+39
-2
lines changed

CHANGELOG.md

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

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

5+
## [0.7.1] - 2025-05-24
6+
7+
### Added
8+
9+
- feat(inspection): add inspection for misspelled `initOf` and `codeOf` in https://github.com/tact-lang/tact-language-server/pull/627
10+
- feat(vscode-package): improve VS Code packaging in https://github.com/tact-lang/tact-language-server/pull/634
11+
- feat(asm): use the latest TVM specification with fixes in https://github.com/tact-lang/tact-language-server/pull/646
12+
- feat(stubs): use stdlib stubs.tact if present with fallback to LS stubs.tact in https://github.com/tact-lang/tact-language-server/pull/647
13+
14+
### Fixes
15+
16+
- fix(grammar): support continuation names as method ID variables by @novusnota in https://github.com/tact-lang/tact-language-server/pull/595
17+
- fix(signature-help): more accurate signature info target selection in https://github.com/tact-lang/tact-language-server/pull/624
18+
- fix(inspections): don't warn to override/abstract/virtual methods in `CanBeStandaloneFunction` inspection in https://github.com/tact-lang/tact-language-server/pull/625
19+
- fix(completion): add contract types to a completion list as well in https://github.com/tact-lang/tact-language-server/pull/626
20+
- fix(documentation): fix TL-B type for the optional struct / message field in https://github.com/tact-lang/tact-language-server/pull/628
21+
- fix(rename): support rename when the whole name is selected in https://github.com/tact-lang/tact-language-server/pull/629
22+
- fix(resolving): search `BaseTrait` only in stdlib in https://github.com/tact-lang/tact-language-server/pull/630
23+
- fix(inspections): don't send inspections again if compiler or misti didn't find any issues in https://github.com/tact-lang/tact-language-server/pull/631
24+
- fix(tlb): fix TL-B for fields with "as remaining" in https://github.com/tact-lang/tact-language-server/pull/640
25+
- fix(vscode): fix .boc file focus issue in https://github.com/tact-lang/tact-language-server/pull/648
26+
- fix(rename): fix rename of variable in a short struct instance in https://github.com/tact-lang/tact-language-server/pull/649
27+
- fix(inlay-hints/documentation): don't show size if it may be incorrect in https://github.com/tact-lang/tact-language-server/pull/650
28+
- fix: don't run inspections and inlay-hints before full initialization in https://github.com/tact-lang/tact-language-server/pull/651
29+
- fix: take into account an import tree, make "NotImportedSymbolInspection" warning and improved overall performance in https://github.com/tact-lang/tact-language-server/pull/652
30+
31+
### Other
32+
33+
- fix: set "@textlint/markdown-to-ast": "14.4.2" in https://github.com/tact-lang/tact-language-server/pull/635
34+
- feat(ci): run unit tests on CI in https://github.com/tact-lang/tact-language-server/pull/645
35+
- feat(dev-docs): add CONTRIBUTING.md in https://github.com/tact-lang/tact-language-server/pull/641
36+
- chore: enforce interface/type fields immutability in https://github.com/tact-lang/tact-language-server/pull/623
37+
- chore: pack LS as NPM package in https://github.com/tact-lang/tact-language-server/pull/654
38+
- chore: add installation via NPM section in https://github.com/tact-lang/tact-language-server/pull/655
39+
- chore: mention LLMs documentation files in README-extension.md in https://github.com/tact-lang/tact-language-server/pull/642
40+
- chore: backport formatter fixes in https://github.com/tact-lang/tact-language-server/pull/644
41+
542
## [0.7.0] - 2025-05-01
643

744
This release adds support for Tact 1.6.7 and fixes path issues on Windows.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"Tact",
99
"Smart contract"
1010
],
11-
"version": "0.7.0",
11+
"version": "0.7.1",
1212
"engines": {
1313
"vscode": "^1.63.0"
1414
},

package.server.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tact-lang/tact-language-server",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"description": "Language Server for Tact",
55
"main": "server.js",
66
"keywords": ["TON", "The Open Network", "Tact", "Smart contract", "language server"],

0 commit comments

Comments
 (0)