From 5c1ad29732c37ec3fd84aa5b0d2692cebdda7d4e Mon Sep 17 00:00:00 2001 From: Brian Ryall Date: Sun, 8 Oct 2023 11:00:02 -0400 Subject: [PATCH] chore(release): prepare for v1.3.3 --- CHANGELOG.md | 6 ++++++ cliff.toml | 2 +- crates/lsp/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bdad2f2e..060d069b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. +## [1.3.3] - 2023-10-08 + +### CI Tasks + +- Bump rustup version to 1.72.0 + ## [1.3.2] - 2023-10-08 ### Bug Fixes diff --git a/cliff.toml b/cliff.toml index abce33b2..b022f57d 100644 --- a/cliff.toml +++ b/cliff.toml @@ -51,7 +51,7 @@ commit_parsers = [ { message = "^test", group = "Testing"}, { message = "^chore\\(release\\): prepare for", skip = true}, { message = "^chore", group = "Miscellaneous Tasks", skip = true}, - { message = "^ci", group = "Miscellaneous Tasks", skip = true}, + { message = "^ci", group = "CI Tasks", skip = false}, { body = ".*security", group = "Security"}, ] # protect breaking changes from being skipped due to matching a skipping commit_parser diff --git a/crates/lsp/Cargo.toml b/crates/lsp/Cargo.toml index 8a0f06a7..1e5ebedb 100644 --- a/crates/lsp/Cargo.toml +++ b/crates/lsp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "beancount-language-server" -version = "1.3.2" +version = "1.3.3" edition = "2021" authors = ["Brian Ryall "] license = "MIT"