diff --git a/.github/aeruginous-io.cff b/.github/aeruginous-io.cff index f00dcc1..6586085 100644 --- a/.github/aeruginous-io.cff +++ b/.github/aeruginous-io.cff @@ -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 @@ -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 diff --git a/.version b/.version index 77d6f4c..6e8bf73 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.0.0 +0.1.0 diff --git a/CHANGELOG.ron b/CHANGELOG.ron index af0f94b..533093c 100644 --- a/CHANGELOG.ron +++ b/CHANGELOG.ron @@ -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", + ], + }, + ), + ), + ], ) diff --git a/CITATION.cff b/CITATION.cff index 0172a60..b9b5d6a 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -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 @@ -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 diff --git a/Cargo.lock b/Cargo.lock index fd4c879..0f4b2a5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "aeruginous-io" -version = "0.0.0" +version = "0.1.0" dependencies = [ "sysexits", ] diff --git a/Cargo.toml b/Cargo.toml index f94a5eb..7403977 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,3 +1,6 @@ +[dependencies] +sysexits = "0.7.10" + [package] authors = ["Kevin Matthes "] categories = ["algorithms", "filesystem"] @@ -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" diff --git a/changelog.d/20240110_113534_GitHub_Actions_configure.ron b/changelog.d/20240110_113534_GitHub_Actions_configure.ron deleted file mode 100644 index 2624a21..0000000 --- a/changelog.d/20240110_113534_GitHub_Actions_configure.ron +++ /dev/null @@ -1,8 +0,0 @@ -( - references: {}, - changes: { - "Added": [ - ".renovaterc.json5", - ], - }, -) diff --git a/changelog.d/20240110_114740_GitHub_Actions_ci-setup.ron b/changelog.d/20240110_114740_GitHub_Actions_ci-setup.ron deleted file mode 100644 index 49b10ce..0000000 --- a/changelog.d/20240110_114740_GitHub_Actions_ci-setup.ron +++ /dev/null @@ -1,9 +0,0 @@ -( - references: {}, - changes: { - "Added": [ - ".github/workflows/ci.yml", - "CITATION.cff", - ], - }, -) diff --git a/changelog.d/20240110_122358_Kevin_Matthes_ci-comment-changes.ron b/changelog.d/20240110_122358_Kevin_Matthes_ci-comment-changes.ron deleted file mode 100644 index 5028c18..0000000 --- a/changelog.d/20240110_122358_Kevin_Matthes_ci-comment-changes.ron +++ /dev/null @@ -1,8 +0,0 @@ -( - references: {}, - changes: { - "Added": [ - ".github/workflows/comment-changes.yml", - ], - }, -) diff --git a/changelog.d/20240110_200307_GitHub_Actions_rust-setup.ron b/changelog.d/20240110_200307_GitHub_Actions_rust-setup.ron deleted file mode 100644 index 93c2b7a..0000000 --- a/changelog.d/20240110_200307_GitHub_Actions_rust-setup.ron +++ /dev/null @@ -1,25 +0,0 @@ -( - references: {}, - changes: { - "Added": [ - ".clippy.toml", - ".github/CODEOWNERS", - ".github/aeruginous-io.cff", - ".github/release.yml", - ".github/workflows/cff.yml", - ".github/workflows/mirror.yml", - ".github/workflows/pr.yml", - ".gitignore", - "Cargo.lock", - "Cargo.toml", - "PathBufLikeReader", - "PathBufLikeReader::read_loudly", - "PathBufLikeReader::read_silently", - "dependency: Rust crate ``sysexits``", - "src/lib.rs", - "src/reading.rs", - "tests/assets/GPL-3.0.rs", - "tests/reading.rs", - ], - }, -) diff --git a/changelog.d/20240110_204510_GitHub_Actions_cff-assembly.ron b/changelog.d/20240110_204510_GitHub_Actions_cff-assembly.ron deleted file mode 100644 index 81a62fe..0000000 --- a/changelog.d/20240110_204510_GitHub_Actions_cff-assembly.ron +++ /dev/null @@ -1,4 +0,0 @@ -( - references: {}, - changes: {}, -) diff --git a/changelog.d/20240112_153243_GitHub_Actions_rename-trait.ron b/changelog.d/20240112_153243_GitHub_Actions_rename-trait.ron deleted file mode 100644 index 81a62fe..0000000 --- a/changelog.d/20240112_153243_GitHub_Actions_rename-trait.ron +++ /dev/null @@ -1,4 +0,0 @@ -( - references: {}, - changes: {}, -) diff --git a/changelog.d/20240112_154833_GitHub_Actions_dependencies.ron b/changelog.d/20240112_154833_GitHub_Actions_dependencies.ron deleted file mode 100644 index 6e44800..0000000 --- a/changelog.d/20240112_154833_GitHub_Actions_dependencies.ron +++ /dev/null @@ -1,8 +0,0 @@ -( - references: {}, - changes: { - "Added": [ - "README: list of dependencies", - ], - }, -) diff --git a/changelog.d/20240112_162420_GitHub_Actions_ronlog-init.ron b/changelog.d/20240112_162420_GitHub_Actions_ronlog-init.ron deleted file mode 100644 index c7dbb7b..0000000 --- a/changelog.d/20240112_162420_GitHub_Actions_ronlog-init.ron +++ /dev/null @@ -1,10 +0,0 @@ -( - references: {}, - changes: { - "Added": [ - ".github/workflows/ronlog.yml", - ".version", - "CHANGELOG.ron", - ], - }, -) diff --git a/changelog.d/20240112_163315_GitHub_Actions_release-workflow-init.ron b/changelog.d/20240112_163315_GitHub_Actions_release-workflow-init.ron deleted file mode 100644 index b880b4d..0000000 --- a/changelog.d/20240112_163315_GitHub_Actions_release-workflow-init.ron +++ /dev/null @@ -1,8 +0,0 @@ -( - references: {}, - changes: { - "Added": [ - ".github/workflows/release.yml", - ], - }, -) diff --git a/changelog.d/20240112_164111_GitHub_Actions_repository-checks-release-workflows.ron b/changelog.d/20240112_164111_GitHub_Actions_repository-checks-release-workflows.ron deleted file mode 100644 index 81a62fe..0000000 --- a/changelog.d/20240112_164111_GitHub_Actions_repository-checks-release-workflows.ron +++ /dev/null @@ -1,4 +0,0 @@ -( - references: {}, - changes: {}, -) diff --git a/changelog.d/setup.rst b/changelog.d/setup.rst deleted file mode 100644 index 98ebf11..0000000 --- a/changelog.d/setup.rst +++ /dev/null @@ -1,8 +0,0 @@ -Added -..... - -- repository creation - -- README.md - -- LICENSE: GPL-3.0 diff --git a/src/lib.rs b/src/lib.rs index f277b2e..5f78d27 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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"; /******************************************************************************/