Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 3.2.0 #1735

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# next -- TBA
# 3.2.0 -- 2024-08-20

## Language changes

Expand All @@ -13,6 +13,10 @@
* Fix #1593 and #1693, two related bugs that would cause Cryptol to panic when
checking ill-typed constraint guards for exhaustivity.

* Fix #1675, which could cause `PrimeEC` to produce incorrect results.

* Fix #1489, which allows for the type checker to reason about exponents.

## New features

* New REPL command :focus enables specifying a submodule scope for evaluating
Expand Down
2 changes: 1 addition & 1 deletion cryptol-remote-api/cryptol-remote-api.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: cryptol-remote-api
version: 3.1.0.99
version: 3.2.0
license: BSD-3-Clause
license-file: LICENSE
author: Galois, Inc.
Expand Down
5 changes: 5 additions & 0 deletions cryptol-remote-api/python/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Revision history for `cryptol` Python package

## 3.2.0 -- 2024-08-20

* The v3.2.0 release is made in tandem with the Cryptol 3.2.0 release. See the
Cryptol 3.2.0 release notes for relevant Cryptol changes.

## 3.1.1 -- 2024-05-15

* Add support for Python 3.12.
Expand Down
2 changes: 1 addition & 1 deletion cryptol.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Cabal-version: 2.4
Name: cryptol
Version: 3.1.0.99
Version: 3.2.0.0
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use 3.2.0, not 3.2.0.0. By convention, we only use quaternary version numbers for development versions.

Synopsis: Cryptol: The Language of Cryptography
Description: Cryptol is a domain-specific language for specifying cryptographic algorithms. A Cryptol implementation of an algorithm resembles its mathematical specification more closely than an implementation in a general purpose language. For more, see <http://www.cryptol.net/>.
License: BSD-3-Clause
Expand Down
4 changes: 2 additions & 2 deletions docs/RefMan/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@
# -- Project information -----------------------------------------------------

project = 'Cryptol'
copyright = '2021, The Cryptol Team'
copyright = '2024, The Cryptol Team'
author = 'The Cryptol Team'

# The short X.Y version
version = ''
# The full version, including alpha/beta/rc tags
release = '2.11.0'
release = '3.2.0'


# -- General configuration ---------------------------------------------------
Expand Down
Loading