diff --git a/CHANGELOG.md b/CHANGELOG.md index c7db31d4..8fbb0cac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,23 @@ 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.4](https://github.com/rash-sh/rash/tree/v1.10.4) - 2024-07-04 + +### Build + +- deps: Update Rust crate serde_json to v1.0.118 +- deps: Update Rust crate log to v0.4.22 +- deps: Update Rust crate clap to v4.5.8 +- deps: Update Rust crate serde_json to v1.0.119 +- deps: Update Rust crate serde_with to v3.8.2 +- deps: Update Rust crate serde_json to v1.0.120 +- deps: Update KSXGitHub/github-actions-deploy-aur action to v2.7.2 +- deps: Update Rust crate serde_with to v3.8.3 + +### Fixed + +- module: Copy binary data + ## [v1.10.3](https://github.com/rash-sh/rash/tree/v1.10.3) - 2024-06-24 ### Build diff --git a/Cargo.lock b/Cargo.lock index 54c44538..455e6d8c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1047,7 +1047,7 @@ dependencies = [ [[package]] name = "mdbook_rash" -version = "1.10.3" +version = "1.10.4" dependencies = [ "chrono", "clap", @@ -1373,7 +1373,7 @@ dependencies = [ [[package]] name = "rash_core" -version = "1.10.3" +version = "1.10.4" dependencies = [ "byte-unit", "cargo-husky", @@ -1407,7 +1407,7 @@ dependencies = [ [[package]] name = "rash_derive" -version = "1.10.3" +version = "1.10.4" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index a450e39a..1fee90e0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ resolver = "2" [workspace.package] -version = "1.10.3" +version = "1.10.4" authors = ["Pando85 "] rust-version = "1.74" edition = "2021" diff --git a/mdbook_rash/Cargo.toml b/mdbook_rash/Cargo.toml index 22fd3cf5..b8cacbce 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.3" } +rash_core = { path = "../rash_core", features = ["docs"], version = "1.10.4" } lazy_static.workspace = true log.workspace = true regex.workspace = true diff --git a/rash_core/Cargo.toml b/rash_core/Cargo.toml index 3ca5e7db..7ddfb1cc 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.3" } +rash_derive = { path = "../rash_derive", version = "1.10.4" } lazy_static.workspace = true log.workspace = true regex.workspace = true