Skip to content

Commit da7ef98

Browse files
committed
VSCode Release v0.14.1
1 parent 5599c2d commit da7ef98

File tree

5 files changed

+36
-18
lines changed

5 files changed

+36
-18
lines changed

vscode/quint-vscode/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## UNRELEASED
99

10+
### Added
11+
### Changed
12+
### Deprecated
13+
### Removed
14+
### Fixed
15+
### Security
16+
17+
## v0.14.1 -- 2024-04-09
18+
1019
### Added
1120
### Changed
1221

vscode/quint-vscode/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vscode/quint-vscode/package.json

+14-5
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,36 @@
33
"displayName": "Quint",
44
"description": "Language support for Quint specifications",
55
"icon": "./icons/logo.png",
6-
"version": "0.14.0",
6+
"version": "0.14.1",
77
"publisher": "informal",
88
"engines": {
99
"vscode": "^1.52.0"
1010
},
11-
"categories": ["Programming Languages"],
11+
"categories": [
12+
"Programming Languages"
13+
],
1214
"bugs": {
1315
"url": "https://github.com/informalsystems/quint/issues"
1416
},
1517
"repository": {
1618
"type": "git",
1719
"url": "https://github.com/informalsystems/quint.git"
1820
},
19-
"activationEvents": ["onLanguage:quint"],
21+
"activationEvents": [
22+
"onLanguage:quint"
23+
],
2024
"main": "./client/out/extension",
2125
"contributes": {
2226
"languages": [
2327
{
2428
"id": "quint",
25-
"aliases": ["Quint", "quint"],
26-
"extensions": [".qnt"],
29+
"aliases": [
30+
"Quint",
31+
"quint"
32+
],
33+
"extensions": [
34+
".qnt"
35+
],
2736
"configuration": "./language-configuration.json",
2837
"icon": {
2938
"light": "./icons/logo-dark.png",

vscode/quint-vscode/server/package-lock.json

+9-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vscode/quint-vscode/server/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@informalsystems/quint-language-server",
33
"description": "Language Server for the Quint specification language",
4-
"version": "0.14.0",
4+
"version": "0.14.1",
55
"author": "Informal Systems",
66
"contributors": [
77
{
@@ -43,7 +43,7 @@
4343
"test/**/*.ts"
4444
],
4545
"dependencies": {
46-
"@informalsystems/quint": "^0.19.0",
46+
"@informalsystems/quint": "^0.19.2",
4747
"vscode-languageserver": "^7.0.0",
4848
"vscode-languageserver-textdocument": "^1.0.1",
4949
"vscode-uri": "^3.0.7"

0 commit comments

Comments
 (0)