Skip to content

Commit b07a8e3

Browse files
authored
Merge pull request #1413 from informalsystems/release/0.19.0
Release v0.19.0
2 parents 93f430e + 3994c6b commit b07a8e3

File tree

4 files changed

+25
-6
lines changed

4 files changed

+25
-6
lines changed

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.19.0 -- 2024-03-25
18+
1019
### Added
1120

1221
- Added polymorphic type declarations, allowing abstracting commonly used data

quint/package-lock.json

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

quint/package.json

+13-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
{
22
"name": "@informalsystems/quint",
3-
"version": "0.18.3",
3+
"version": "0.19.0",
44
"description": "Core tool for the Quint specification language",
5-
"keywords": ["temporal", "logic", "formal", "specification", "verification"],
5+
"keywords": [
6+
"temporal",
7+
"logic",
8+
"formal",
9+
"specification",
10+
"verification"
11+
],
612
"homepage": "https://github.com/informalsystems/quint",
713
"bugs": "https://github.com/informalsystems/quint/issues",
814
"license": "Apache 2.0",
@@ -29,7 +35,11 @@
2935
"bin": {
3036
"quint": "dist/src/cli.js"
3137
},
32-
"files": ["README.md", "dist/**/*", "test/**/*.ts"],
38+
"files": [
39+
"README.md",
40+
"dist/**/*",
41+
"test/**/*.ts"
42+
],
3343
"engines": {
3444
"node": "18 - 20"
3545
},

quint/src/version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// Generated by genversion.
2-
export const version = '0.18.3'
2+
export const version = '0.19.0'

0 commit comments

Comments
 (0)