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

Prepare for 3.1.0 release #1620

Merged
merged 5 commits into from
Feb 5, 2024
Merged
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
18 changes: 14 additions & 4 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# UNRELEASED
# 3.1.0 -- 2024-??-??

## Language changes

Expand Down Expand Up @@ -26,13 +26,23 @@

## Bug fixes

* Fixed #1556, #1237, and #1561.
* Fixed #1455, making anything in scope of the functor in scope at the REPL as
well when an instantiation of the functor is loaded and focused,
design choice (3) on the ticket. In particular, the prelude will be in scope.
well when an instantiation of the functor is loaded and focused, design
choice (3) on the ticket. In particular, the prelude will be in scope.

* Fix #1578, which caused `parmap` to crash when evaluated on certain types of
sequences.

* Closed issues #813, #1237, #1397, #1446, #1486, #1492, #1495, #1537,
#1538, #1542, #1544, #1548, #1551, #1552, #1554, #1556, #1561, #1562, #1566,
#1567, #1569, #1571, #1584, #1588, #1590, #1598, #1599, #1604, #1605, #1606,
#1607, #1609, #1610, #1611, #1612, #1613, #1615, #1616, #1617, #1618, and
#1619.

* Merged pull requests #1429, #1512, #1534, #1535, #1536, #1540, #1541, #1543,
#1547, #1549, #1550, #1555, #1557, #1558, #1559, #1564, #1565, #1568, #1570,
#1572, #1573, #1577, #1579, #1580, #1583, #1585, #1586, #1592, #1600, #1601,
and #1602.

# 3.0.0 -- 2023-06-26

Expand Down
5 changes: 3 additions & 2 deletions cryptol-remote-api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# Revision history for `cryptol-remote-api` and `cryptol-eval-server`

## 3.0.2 -- YYYY-MM-DD
## 3.1.0 -- 2024-??-??

* NEW CHANGELOG ENTRIES SINCE 3.0.1 GO HERE
* The v3.1.0 release is made in tandem with the Cryptol 3.1.0 release. See the
Cryptol 3.1.0 release notes for relevant Cryptol changes.

## 3.0.1 -- 2023-07-10

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.0.1.99
version: 3.1.0.99
license: BSD-3-Clause
license-file: LICENSE
author: Galois, Inc.
Expand Down
5 changes: 3 additions & 2 deletions cryptol-remote-api/python/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# Revision history for `cryptol` Python package

## 3.0.2 -- YYYY-MM-DD
## 3.1.0 -- 2024-??-??

* NEW CHANGELOG ENTRIES SINCE 3.0.1 GO HERE
* The v3.1.0 release is made in tandem with the Cryptol 3.1.0 release. See the
Cryptol 3.1.0 release notes for relevant Cryptol changes.

## 3.0.1 -- 2023-07-10

Expand Down
2 changes: 1 addition & 1 deletion cryptol-remote-api/python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cryptol"
version = "3.0.1.99"
version = "3.1.0.99"
readme = "README.md"
keywords = ["cryptography", "verification"]
description = "Cryptol client for the Cryptol RPC server"
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.0.0.99
Version: 3.1.0.99
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
Loading