Skip to content

Commit

Permalink
Merge branch 'main' into igor/vcgen-source
Browse files Browse the repository at this point in the history
  • Loading branch information
konnov authored Oct 4, 2024
2 parents 35b826b + dd37ffa commit 51c423a
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 8 deletions.
1 change: 0 additions & 1 deletion .unreleased/bug-fixes/BogusSafetyViolationSubsetNat.md

This file was deleted.

1 change: 0 additions & 1 deletion .unreleased/bug-fixes/distinct-on-singleton.md

This file was deleted.

13 changes: 13 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
<!-- NOTE: This file is generated. Do not write release notes here.
Notes for unreleased changes go in the .unreleased/ directory. -->

## 0.47.0 - 2024-10-02

### Breaking changes

- Downgrade z3 to 4.12.6, due to instability of 4.13.0

## 0.46.2 - 2024-10-02

### Bug fixes

- Do not produce `(distinct ...)` for singletons, see #3005
- Show note that expression is unsupported instead of reporting a counterexample claiming that e.g. `{42} \in SUBSET Nat` is false, see #2690

## 0.46.1 - 2024-09-24

### Features
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.46.2-SNAPSHOT
0.47.1-SNAPSHOT
6 changes: 3 additions & 3 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ object Dependencies {
val slf4j = "org.slf4j" % "slf4j-api" % "2.0.16"
val shapeless = "com.chuusai" %% "shapeless" % "2.3.12"
val tla2tools = "org.lamport" % "tla2tools" % "1.7.0-SNAPSHOT"
val ujson = "com.lihaoyi" %% "ujson" % "4.0.1"
val upickle = "com.lihaoyi" %% "upickle" % "4.0.1"
val z3 = "tools.aqua" % "z3-turnkey" % "4.13.0"
val ujson = "com.lihaoyi" %% "ujson" % "4.0.2"
val upickle = "com.lihaoyi" %% "upickle" % "4.0.2"
val z3 = "tools.aqua" % "z3-turnkey" % "4.12.6"
val zio = "dev.zio" %% "zio" % zioVersion
// Keep up to sync with version in plugins.sbt
val zioGrpcCodgen = "com.thesamet.scalapb.zio-grpc" %% "zio-grpc-codegen" % "0.6.0-test3" % "provided"
Expand Down
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "1.2.0")
// https://github.com/marcuslonnberg/sbt-docker
addSbtPlugin("se.marcuslonnberg" % "sbt-docker" % "1.11.0")
// https://github.com/scoverage/sbt-scoverage
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.2.0")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.2.1")
// https://github.com/sbt/sbt-buildinfo
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.12.0")
// https://github.com/sbt/sbt-native-packager
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.10.4")
// https://scalacenter.github.io/scalafix/docs/users/installation.html
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.12.1")
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.13.0")
// https://scalapb.github.io/zio-grpc/docs/installation
addSbtPlugin("com.thesamet" % "sbt-protoc" % "1.0.6")
// https://github.com/sbt/sbt-unidoc
Expand Down

0 comments on commit 51c423a

Please sign in to comment.