Skip to content

Commit

Permalink
[release] 0.15.0 (#695)
Browse files Browse the repository at this point in the history
* [release] 0.15.0

* Bump version to 0.15.1-SNAPSHOT

Co-authored-by: shonfeder <github@actions.ci>
Co-authored-by: Igor Konnov <igor@informal.systems>
  • Loading branch information
3 people committed Mar 29, 2021
1 parent 9dfcefe commit c8ca208
Show file tree
Hide file tree
Showing 12 changed files with 46 additions and 43 deletions.
27 changes: 27 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,33 @@
This file is generated. Do not write release notes here.
Notes for unreleased changes go in ./UNRELEASED.md -->

## 0.15.0

### Features

* Model checker: receiving the types from with the type checker Snowcat, see #668 and #350
* Model checker and type checker: Snowcat is the only way to compute types now
* Type checker: the old Apalache type annotations are no longer supported, see #668
* Type checker: tagging all expressions with the reconstructed types, see #608
* Type checker: handling TLA+ labels like `lab("a", "b") :: e`, see #653
* Type checker: always treating `<<...>>` in `UNCHANGED <<...>>` as a tuple, see #660
* Type checker: handling the general case of EXCEPT, see #617
* Preprocessing: handling the general case of EXCEPT, see #647

### Changed

* Preprocessing: massive refactoring of the passes to support types. This may have introduced unexpected bugs.
* Model checker: translation rules for records and functions have been modified, in order to support new types. Bugs to
be expected.
* Intermediate representation: renamed BmcOper to ApalacheOper. Its operators have the prefix `Apalache!` now.

### Removed

* Unused rewriting rules and `FailPredT` in the model checker, see #665
* Intermediate representation: removed non-standard operators subsetProper, supset, supseteq, see #615
* Intermediate representation: removed TlaArithOper.{sum,prod}, as they are not standard, see #580
* Intermediate representation: removed TlaOper.chooseIdiom

## 0.11.0

### Features
Expand Down
24 changes: 0 additions & 24 deletions UNRELEASED.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,27 +10,3 @@
* Some bug fix, see #124
DO NOT LEAVE A BLANK LINE BELOW THIS PREAMBLE -->
### Features

* Model checker: receiving the types from with the type checker Snowcat, see #668 and #350
* Model checker and type checker: Snowcat is the only way to compute types now
* Type checker: the old Apalache type annotations are no longer supported, see #668
* Type checker: tagging all expressions with the reconstructed types, see #608
* Type checker: handling TLA+ labels like `lab("a", "b") :: e`, see #653
* Type checker: always treating `<<...>>` in `UNCHANGED <<...>>` as a tuple, see #660
* Type checker: handling the general case of EXCEPT, see #617
* Preprocessing: handling the general case of EXCEPT, see #647

### Changed

* Preprocessing: massive refactoring of the passes to support types. This may have introduced unexpected bugs.
* Model checker: translation rules for records and functions have been modified, in order to support new types. Bugs to
be expected.
* Intermediate representation: renamed BmcOper to ApalacheOper. Its operators have the prefix `Apalache!` now.

### Removed

* Unused rewriting rules and `FailPredT` in the model checker, see #665
* Intermediate representation: removed non-standard operators subsetProper, supset, supseteq, see #615
* Intermediate representation: removed TlaArithOper.{sum,prod}, as they are not standard, see #580
* Intermediate representation: removed TlaOper.chooseIdiom
4 changes: 2 additions & 2 deletions mod-distribution/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
<parent>
<groupId>at.forsyte.apalache</groupId>
<artifactId>apalache</artifactId>
<version>0.11.1-SNAPSHOT</version>
<version>0.15.1-SNAPSHOT</version>
</parent>

<artifactId>apalache-pkg</artifactId>
<version>0.11.1-SNAPSHOT</version>
<version>0.15.1-SNAPSHOT</version>
<packaging>pom</packaging>

<name>apalache-pkg</name>
Expand Down
4 changes: 2 additions & 2 deletions mod-infra/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
<parent>
<groupId>at.forsyte.apalache</groupId>
<artifactId>apalache</artifactId>
<version>0.11.1-SNAPSHOT</version>
<version>0.15.1-SNAPSHOT</version>
</parent>

<artifactId>infra</artifactId>
<version>0.11.1-SNAPSHOT</version>
<version>0.15.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>infra</name>
Expand Down
4 changes: 2 additions & 2 deletions mod-tool/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
<parent>
<groupId>at.forsyte.apalache</groupId>
<artifactId>apalache</artifactId>
<version>0.11.1-SNAPSHOT</version>
<version>0.15.1-SNAPSHOT</version>
</parent>

<!--
All command line tooling and option parsing goes here... and nothing else!
-->
<artifactId>tool</artifactId>
<version>0.11.1-SNAPSHOT</version>
<version>0.15.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>tool</name>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>at.forsyte.apalache</groupId>
<artifactId>apalache</artifactId>
<packaging>pom</packaging>
<version>0.11.1-SNAPSHOT</version>
<version>0.15.1-SNAPSHOT</version>

<name>APALACHE project</name>
<url>https://github.com/informalsystems/apalache</url>
Expand Down
4 changes: 2 additions & 2 deletions tla-assignments/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
<parent>
<groupId>at.forsyte.apalache</groupId>
<artifactId>apalache</artifactId>
<version>0.11.1-SNAPSHOT</version>
<version>0.15.1-SNAPSHOT</version>
</parent>

<artifactId>tla-assignments</artifactId>
<version>0.11.1-SNAPSHOT</version>
<version>0.15.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>tla-assignments</name>
Expand Down
4 changes: 2 additions & 2 deletions tla-bmcmt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
<parent>
<groupId>at.forsyte.apalache</groupId>
<artifactId>apalache</artifactId>
<version>0.11.1-SNAPSHOT</version>
<version>0.15.1-SNAPSHOT</version>
</parent>

<artifactId>tla-bmcmt</artifactId>
<version>0.11.1-SNAPSHOT</version>
<version>0.15.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>tla-bmcmt</name>
Expand Down
4 changes: 2 additions & 2 deletions tla-import/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
<parent>
<groupId>at.forsyte.apalache</groupId>
<artifactId>apalache</artifactId>
<version>0.11.1-SNAPSHOT</version>
<version>0.15.1-SNAPSHOT</version>
</parent>

<artifactId>tla-import</artifactId>
<version>0.11.1-SNAPSHOT</version>
<version>0.15.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>tla-import</name>
Expand Down
4 changes: 2 additions & 2 deletions tla-pp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
<parent>
<groupId>at.forsyte.apalache</groupId>
<artifactId>apalache</artifactId>
<version>0.11.1-SNAPSHOT</version>
<version>0.15.1-SNAPSHOT</version>
</parent>

<artifactId>tla-pp</artifactId>
<version>0.11.1-SNAPSHOT</version>
<version>0.15.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>tla-pp</name>
Expand Down
4 changes: 2 additions & 2 deletions tla-types/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
<parent>
<groupId>at.forsyte.apalache</groupId>
<artifactId>apalache</artifactId>
<version>0.11.1-SNAPSHOT</version>
<version>0.15.1-SNAPSHOT</version>
</parent>

<artifactId>tla-types</artifactId>
<version>0.11.1-SNAPSHOT</version>
<version>0.15.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>tla-types</name>
Expand Down
4 changes: 2 additions & 2 deletions tlair/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
<parent>
<groupId>at.forsyte.apalache</groupId>
<artifactId>apalache</artifactId>
<version>0.11.1-SNAPSHOT</version>
<version>0.15.1-SNAPSHOT</version>
</parent>

<artifactId>tlair</artifactId>
<version>0.11.1-SNAPSHOT</version>
<version>0.15.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>tlair</name>
Expand Down

0 comments on commit c8ca208

Please sign in to comment.