Skip to content

Commit

Permalink
Release 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Shon Feder authored and shonfeder committed Dec 22, 2022
1 parent ba98c0e commit b8ad603
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 8 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [unreleased]
## v0.4.0 -- 2022-12-22

### Added

Expand All @@ -17,6 +17,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Project renamed to `quint` (#458)
- REPL can now receive input that includes its prompt (#430)
- Calling `quint` without an argument now starts the REPL (#445)
- Renamed vscode plugin package to `quint-vscode` (#463)
- Renamed `quint` package to `@informalsystems/quint`, establishing it under the
`informalsystems` organization.

### Fixed

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.

24 changes: 19 additions & 5 deletions quint/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
{
"name": "@informalsystems/quint",
"version": "0.3.0",
"version": "0.4.0",
"description": "Core tool for the Quint specification language",
"keywords": ["temporal", "logic", "formal", "specification", "verification"],
"keywords": [
"temporal",
"logic",
"formal",
"specification",
"verification"
],
"homepage": "https://github.com/informalsystems/quint",
"bugs": "https://github.com/informalsystems/quint/issues",
"license": "Apache 2.0",
Expand Down Expand Up @@ -37,21 +43,29 @@
"es2021": true,
"mocha": true
},
"extends": ["standard"],
"extends": [
"standard"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2021,
"sourceType": "module"
},
"ignorePatterns": ["src/generated/*"],
"ignorePatterns": [
"src/generated/*"
],
"plugins": [
"@typescript-eslint",
"eslint-plugin-json",
"eslint-plugin-import",
"eslint-plugin-node"
]
},
"files": ["README.md", "dist/**/*", "test/**/*.ts"],
"files": [
"README.md",
"dist/**/*",
"test/**/*.ts"
],
"engines": {
"node": "*"
},
Expand Down

0 comments on commit b8ad603

Please sign in to comment.