Skip to content

Commit

Permalink
[GitHub Actions] Assemble CHANGELOG and Increment Versions (#874)
Browse files Browse the repository at this point in the history
Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Nov 14, 2023
1 parent 5c33833 commit a129a3f
Show file tree
Hide file tree
Showing 8 changed files with 41 additions and 28 deletions.
2 changes: 1 addition & 1 deletion .github/CFF/aeruginous.cff
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ repository-artifact: https://crates.io/crates/aeruginous
repository-code: https://github.com/kevinmatthes/aeruginous-rs
title: aeruginous-rs
url: https://github.com/kevinmatthes/aeruginous-rs
version: 3.3.0
version: 3.4.0
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.0
3.4.0
32 changes: 31 additions & 1 deletion CHANGELOG.ron
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,36 @@
},
introduction: Some("All notable changes to this project are documented in this file.\n\nThe format is based on `Keep a Changelog`_."),
sections: [
(
references: {},
version: (
major: 3,
minor: 4,
patch: 0,
),
released: "2023-11-14T22:53:18.771108704Z",
introduction: None,
changes: (
references: {},
changes: {
"Added": [
"FromXml",
"ToXml",
"comment-changes: allow for XML fragments",
"dependency: Rust crate ``quick-xml``",
"documentation: software license of ``quick-xml`` crate",
"ronlog: accept XML fragments for input",
"src/traits/file_formats.rs",
"test case for ``FromXml`` and ``ToXml``",
],
"Removed": [
"src/traits/markdown.rs",
"src/traits/restructured_text.rs",
"src/traits/rusty_object_notation.rs",
],
},
),
),
(
references: {},
version: (
Expand All @@ -17,10 +47,10 @@
references: {},
changes: {
"Added": [
".gitattributes",
"curl-cffref/action.yml",
"documentation: software license of ``cargo-install`` GHA",
"documentation: software license of ``setup-git-user`` GHA",
".gitattributes",
],
"Changed": [
"CI: CFF update workflow now applies curl-cffref Action",
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ repository-artifact: https://crates.io/crates/aeruginous
repository-code: https://github.com/kevinmatthes/aeruginous-rs
title: aeruginous-rs
url: https://github.com/kevinmatthes/aeruginous-rs
version: 3.3.0
version: 3.4.0
references:
- type: software
date-released: 2023-09-15
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = 3

[[package]]
name = "aeruginous"
version = "3.3.0"
version = "3.4.0"
dependencies = [
"anstyle",
"cargo-lock",
Expand Down
7 changes: 5 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[dependencies]
anstyle = "1.0.4"
cargo-lock = "9.0.0"
quick-xml = { version = "0.31.0", features = ["serialize"] }
ron = "0.8.1"
sysexits = "0.7.5"
toml = "0.8.8"
Expand All @@ -22,6 +21,10 @@ version = "0.18.1"
features = ["serde"]
version = "2.1.0"

[dependencies.quick-xml]
features = ["serialize"]
version = "0.31.0"

[dependencies.serde]
features = ["derive"]
version = "1.0.192"
Expand All @@ -39,4 +42,4 @@ name = "aeruginous"
readme = "README.md"
repository = "https://github.com/kevinmatthes/aeruginous-rs"
rust-version = "1.73.0"
version = "3.3.0"
version = "3.4.0"
20 changes: 0 additions & 20 deletions changelog.d/20231114_224223_GitHub_Actions_comment-changes-xml.ron

This file was deleted.

2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -429,6 +429,6 @@ pub const SELF_DESCRIPTION: &str =
"The Aeruginous Open Source Development Toolbox";

/// This crate's version.
pub const VERSION: &str = "v3.3.0";
pub const VERSION: &str = "v3.4.0";

/******************************************************************************/

0 comments on commit a129a3f

Please sign in to comment.