diff --git a/.ci/PKGBUILD.j2 b/.ci/PKGBUILD.j2 index a44af518..81a71057 100644 --- a/.ci/PKGBUILD.j2 +++ b/.ci/PKGBUILD.j2 @@ -11,7 +11,7 @@ depends=('gcc-libs') makedepends=('cargo' 'git') source=("git+https://github.com/rash-sh/rash.git#tag=v${pkgver}?signed") -validpgpkeys=('C15CDDF9318F14398300B917C6CB8A1793CA3F94') +validpgpkeys=('CD1DB60B2C8465FD50028EF6D381D73787B45B3E') sha512sums=('SKIP') prepare() { diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c220403..c7db31d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [v1.10.3](https://github.com/rash-sh/rash/tree/v1.10.3) - 2024-06-24 + +### Build + +- deps: Update Rust crate lazy_static to v1.5.0 +- deps: Update Rust crate syn to v2.0.68 +- deps: Update Rust crate strum to v0.26.3 +- Fix AUR gpg key fingerprint + ## [v1.10.2](https://github.com/rash-sh/rash/tree/v1.10.2) - 2024-06-21 ### Added diff --git a/Cargo.lock b/Cargo.lock index 3776e06d..aa8acaa4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1047,7 +1047,7 @@ dependencies = [ [[package]] name = "mdbook_rash" -version = "1.10.2" +version = "1.10.3" dependencies = [ "chrono", "clap", @@ -1373,7 +1373,7 @@ dependencies = [ [[package]] name = "rash_core" -version = "1.10.2" +version = "1.10.3" dependencies = [ "byte-unit", "cargo-husky", @@ -1407,7 +1407,7 @@ dependencies = [ [[package]] name = "rash_derive" -version = "1.10.2" +version = "1.10.3" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 717b837f..a450e39a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ resolver = "2" [workspace.package] -version = "1.10.2" +version = "1.10.3" authors = ["Pando85 "] rust-version = "1.74" edition = "2021" diff --git a/mdbook_rash/Cargo.toml b/mdbook_rash/Cargo.toml index 351d018e..22fd3cf5 100644 --- a/mdbook_rash/Cargo.toml +++ b/mdbook_rash/Cargo.toml @@ -15,7 +15,7 @@ path = "src/bin/mdbook-rash.rs" doc = false [dependencies] -rash_core = { path = "../rash_core", features = ["docs"], version = "1.10.2" } +rash_core = { path = "../rash_core", features = ["docs"], version = "1.10.3" } lazy_static.workspace = true log.workspace = true regex.workspace = true diff --git a/rash_core/Cargo.toml b/rash_core/Cargo.toml index f5c81907..3ca5e7db 100644 --- a/rash_core/Cargo.toml +++ b/rash_core/Cargo.toml @@ -21,7 +21,7 @@ path = "src/bin/rash.rs" docs = ["rash_derive/docs", "schemars"] [dependencies] -rash_derive = { path = "../rash_derive", version = "1.10.2" } +rash_derive = { path = "../rash_derive", version = "1.10.3" } lazy_static.workspace = true log.workspace = true regex.workspace = true