From 3f1f7fd2d2938fc6398d6d158e881240743f527a Mon Sep 17 00:00:00 2001 From: Franklin Delehelle Date: Mon, 28 Aug 2023 13:55:58 +0200 Subject: [PATCH] chore: Release corset version 8.2.0 --- CHANGELOG.md | 36 ++++++++++++++++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 38 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b5adc1f..b1d6398 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,44 @@ All notable changes to this project will be documented in this file. +## [8.2.0] - 2023-08-28 + +### Bug Fixes + +- OoB in Combinator display +- Incoherences in the type system regarding cyclic validation + +### Features + +- Add `corset inspect` to visualize trace files +- Add a Forth micro-language to select rows in the inspector +- Specify columns potentially missing bool annotation +- Opcodes can be used as immediate values +- Always save valid scan expressions +- Corset code can be provided from STDIN + +### Miscellaneous Tasks + +- Rename jobs +- Github++ +- Clippy +- Clippy + +### Refactor + +- Split inputs in their own modules + +### Build + +- Fix conditional compilation +- Drop dependency on names + ## [8.1.3] - 2023-08-22 +### Miscellaneous Tasks + +- Release corset version 8.1.3 + ### Build - Fix release.yml diff --git a/Cargo.lock b/Cargo.lock index 979caa6..8299f65 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -357,7 +357,7 @@ checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" [[package]] name = "corset" -version = "8.1.3" +version = "8.2.0" dependencies = [ "anyhow", "atty", diff --git a/Cargo.toml b/Cargo.toml index 1850c18..84c9a8f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "corset" -version = "8.1.3" +version = "8.2.0" edition = "2021" authors = [ "Franklin Delehelle " ] build = "build.rs"