Skip to content

Commit

Permalink
[GitHub Actions] Assemble CHANGELOG and Increment Versions (#19)
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] committed Jan 12, 2024
1 parent ec7d63d commit b8871f6
Show file tree
Hide file tree
Showing 18 changed files with 59 additions and 108 deletions.
4 changes: 2 additions & 2 deletions .github/aeruginous-io.cff
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors:
family-names: Matthes
given-names: Kevin
cff-version: 1.2.0
date-released: 2024-01-10
date-released: 2024-01-12
keywords:
- Rust
- aeruginous
Expand All @@ -16,4 +16,4 @@ repository-artifact: https://crates.io/crates/aeruginous-io
repository-code: https://github.com/kevinmatthes/aeruginous-io
title: aeruginous-io
url: https://github.com/kevinmatthes/aeruginous-io
version: 0.0.0
version: 0.1.0
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.0
0.1.0
49 changes: 48 additions & 1 deletion CHANGELOG.ron
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,52 @@
"Keep a Changelog": "https://keepachangelog.com/en/1.0.0/",
},
introduction: Some("All notable changes to this project are documented in this file.\n\nThe format is based on `Keep a Changelog`_."),
sections: [],
sections: [
(
references: {},
version: (
major: 0,
minor: 1,
patch: 0,
),
released: "2024-01-12T16:51:12.198926517Z",
introduction: None,
changes: (
references: {},
changes: {
"Added": [
".clippy.toml",
".github/CODEOWNERS",
".github/aeruginous-io.cff",
".github/release.yml",
".github/workflows/cff.yml",
".github/workflows/ci.yml",
".github/workflows/comment-changes.yml",
".github/workflows/mirror.yml",
".github/workflows/pr.yml",
".github/workflows/release.yml",
".github/workflows/ronlog.yml",
".gitignore",
".renovaterc.json5",
".version",
"CHANGELOG.ron",
"CITATION.cff",
"Cargo.lock",
"Cargo.toml",
"PathBufLikeReader",
"PathBufLikeReader::read_loudly",
"PathBufLikeReader::read_silently",
"README.md",
"README: list of dependencies",
"dependency: Rust crate ``sysexits``",
"repository creation",
"src/lib.rs",
"src/reading.rs",
"tests/assets/GPL-3.0.rs",
"tests/reading.rs",
],
},
),
),
],
)
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors:
family-names: Matthes
given-names: Kevin
cff-version: 1.2.0
date-released: 2024-01-10
date-released: 2024-01-12
keywords:
- Rust
- aeruginous
Expand All @@ -16,7 +16,7 @@ repository-artifact: https://crates.io/crates/aeruginous-io
repository-code: https://github.com/kevinmatthes/aeruginous-io
title: aeruginous-io
url: https://github.com/kevinmatthes/aeruginous-io
version: 0.0.0
version: 0.1.0
references:
- type: software
date-released: 2024-01-06
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[dependencies]
sysexits = "0.7.10"

[package]
authors = ["Kevin Matthes <[email protected]>"]
categories = ["algorithms", "filesystem"]
Expand All @@ -11,7 +14,4 @@ name = "aeruginous-io"
readme = "README.md"
repository = "https://github.com/kevinmatthes/aeruginous-io"
rust-version = "1.75.0"
version = "0.0.0"

[dependencies]
sysexits = "0.7.10"
version = "0.1.0"
8 changes: 0 additions & 8 deletions changelog.d/20240110_113534_GitHub_Actions_configure.ron

This file was deleted.

9 changes: 0 additions & 9 deletions changelog.d/20240110_114740_GitHub_Actions_ci-setup.ron

This file was deleted.

This file was deleted.

25 changes: 0 additions & 25 deletions changelog.d/20240110_200307_GitHub_Actions_rust-setup.ron

This file was deleted.

4 changes: 0 additions & 4 deletions changelog.d/20240110_204510_GitHub_Actions_cff-assembly.ron

This file was deleted.

4 changes: 0 additions & 4 deletions changelog.d/20240112_153243_GitHub_Actions_rename-trait.ron

This file was deleted.

8 changes: 0 additions & 8 deletions changelog.d/20240112_154833_GitHub_Actions_dependencies.ron

This file was deleted.

10 changes: 0 additions & 10 deletions changelog.d/20240112_162420_GitHub_Actions_ronlog-init.ron

This file was deleted.

This file was deleted.

This file was deleted.

8 changes: 0 additions & 8 deletions changelog.d/setup.rst

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 @@ -136,6 +136,6 @@ pub use reading::PathBufLikeReader;
pub const NAME: &str = "aeruginous-io";

/// This crate's version.
pub const VERSION: &str = "v0.0.0";
pub const VERSION: &str = "v0.1.0";

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

0 comments on commit b8871f6

Please sign in to comment.