Skip to content

Commit

Permalink
Merge branch 'main' into gabriela/simulator-seed-printing
Browse files Browse the repository at this point in the history
  • Loading branch information
bugarela authored Oct 22, 2024
2 parents 6eac6bc + d2f00a0 commit a70a73d
Show file tree
Hide file tree
Showing 11 changed files with 60 additions and 18 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## UNRELEASED

### Added
### Changed
### Deprecated
### Removed
### Fixed

- Hashbang lines are now properly highlighted as comments in vscode and in highlight.js.

### Security

## v0.22.2 -- 2024-10-08

### Added

- `quint verify` has the option `--apalache-version` to pull a custom version (#1521)
Expand Down
1 change: 1 addition & 0 deletions editor-plugins/highlight.js/quint.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ function quintHljs(hljs) {
scope: 'number',
begin: '-?(0x[0-9a-fA-F]([0-9a-fA-F]|_[0-9a-fA-F])*|0|[1-9]([0-9]|_[0-9])*)',
},
hljs.SHEBANG, // file-leading hashbang
hljs.C_LINE_COMMENT_MODE, // single line comments
hljs.C_BLOCK_COMMENT_MODE, // multiline comments
],
Expand Down
4 changes: 2 additions & 2 deletions quint/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion quint/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@informalsystems/quint",
"version": "0.22.1",
"version": "0.22.2",
"description": "Core tool for the Quint specification language",
"keywords": [
"temporal",
Expand Down
2 changes: 1 addition & 1 deletion quint/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// Generated by genversion.
export const version = '0.22.1'
export const version = '0.22.2'
18 changes: 18 additions & 0 deletions vscode/quint-vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
### Security

## v0.14.8 -- 2024-10-18

### Added
### Changed
### Deprecated
### Removed
### Fixed
### Security

## v0.14.7 -- 2024-10-08

### Added
### Changed
### Deprecated
### Removed
### Fixed
### Security

## v0.14.6 -- 2024-09-25

### Added
Expand Down
4 changes: 2 additions & 2 deletions vscode/quint-vscode/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vscode/quint-vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "Quint",
"description": "Language support for Quint specifications",
"icon": "./icons/logo.png",
"version": "0.14.6",
"version": "0.14.8",
"publisher": "informal",
"engines": {
"vscode": "^1.52.0"
Expand Down
18 changes: 9 additions & 9 deletions vscode/quint-vscode/server/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions vscode/quint-vscode/server/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@informalsystems/quint-language-server",
"description": "Language Server for the Quint specification language",
"version": "0.14.6",
"version": "0.14.8",
"author": "Informal Systems",
"contributors": [
{
Expand Down Expand Up @@ -43,7 +43,7 @@
"test/**/*.ts"
],
"dependencies": {
"@informalsystems/quint": "^0.22.1",
"@informalsystems/quint": "^0.22.2",
"vscode-languageserver": "^7.0.0",
"vscode-languageserver-textdocument": "^1.0.1",
"vscode-uri": "^3.0.7"
Expand Down
11 changes: 11 additions & 0 deletions vscode/quint-vscode/syntaxes/quint.tmLanguage.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
"$schema": "https://raw.githubusercontent.com/martinring/tmlanguage/master/tmlanguage.json",
"name": "Quint",
"patterns": [
{
"include": "#hashbangLine"
},
{
"include": "#lineComments"
},
Expand Down Expand Up @@ -92,6 +95,14 @@
}
]
},
"hashbangLine": {
"patterns": [
{
"name": "comment.line.hashbang.quint",
"match": "^#!.*$"
}
]
},
"lineComments": {
"patterns": [
{
Expand Down

0 comments on commit a70a73d

Please sign in to comment.