diff --git a/Cargo.lock b/Cargo.lock index 34e50cd..73dd8de 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1286,7 +1286,7 @@ dependencies = [ [[package]] name = "goldboot" -version = "0.0.2" +version = "0.0.3" dependencies = [ "anyhow", "axum", @@ -1346,7 +1346,7 @@ dependencies = [ [[package]] name = "goldboot-image" -version = "0.0.1" +version = "0.0.2" dependencies = [ "aes-gcm", "anyhow", @@ -1367,7 +1367,7 @@ dependencies = [ [[package]] name = "goldboot-macros" -version = "0.0.1" +version = "0.0.2" dependencies = [ "quote", "syn 2.0.63", diff --git a/goldboot-image/CHANGELOG.md b/goldboot-image/CHANGELOG.md index 13b0eaa..86b14ca 100644 --- a/goldboot-image/CHANGELOG.md +++ b/goldboot-image/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.2](https://github.com/fossable/goldboot/compare/goldboot-image-v0.0.1...goldboot-image-v0.0.2) - 2024-05-12 + +### Other +- restore registry crate + ## [0.0.1](https://github.com/fossable/goldboot/releases/tag/goldboot-image-v0.0.1) - 2024-03-17 ### Fixed diff --git a/goldboot-image/Cargo.toml b/goldboot-image/Cargo.toml index 810e2ac..7607dba 100644 --- a/goldboot-image/Cargo.toml +++ b/goldboot-image/Cargo.toml @@ -7,7 +7,7 @@ license = "AGPL-3.0-only" name = "goldboot-image" repository = "https://github.com/fossable/goldboot" rust-version = "1.74" -version = "0.0.1" +version = "0.0.2" [dependencies] aes-gcm = { version = "0.10.3", features = ["std"] } diff --git a/goldboot-macros/CHANGELOG.md b/goldboot-macros/CHANGELOG.md index f3415b0..19284a1 100644 --- a/goldboot-macros/CHANGELOG.md +++ b/goldboot-macros/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.2](https://github.com/fossable/goldboot/compare/goldboot-macros-v0.0.1...goldboot-macros-v0.0.2) - 2024-05-12 + +### Other +- Include the repository field +- restore registry crate + ## [0.0.1](https://github.com/fossable/goldboot/releases/tag/goldboot-macros-v0.0.1) - 2024-03-17 ### Other diff --git a/goldboot-macros/Cargo.toml b/goldboot-macros/Cargo.toml index 4e94133..fbfdfda 100644 --- a/goldboot-macros/Cargo.toml +++ b/goldboot-macros/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" license = "AGPL-3.0-only" name = "goldboot-macros" rust-version = "1.74" -version = "0.0.1" +version = "0.0.2" repository = "https://github.com/fossable/goldboot" [lib] diff --git a/goldboot-registry/CHANGELOG.md b/goldboot-registry/CHANGELOG.md new file mode 100644 index 0000000..d7e4f8a --- /dev/null +++ b/goldboot-registry/CHANGELOG.md @@ -0,0 +1,39 @@ +# Changelog +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). + +## [Unreleased] + +## [0.0.1](https://github.com/fossable/goldboot/releases/tag/goldboot-registry-v0.0.1) - 2024-05-12 + +### Other +- re-enable goldboot linux +- update readme +- restore registry crate +- merge registry into main crate +- update dependencies +- replace log with tracing +- fix remaining build errors +- replace simple_error -> anyhow +- use enum dispatch in image mold +- continue cleanup +- reorganize crates +- reorganize crates +- remove goldboot-graphics crate +- back to standard formatting +- Bump rustls-pemfile from 0.3.0 to 1.0.1 ([#37](https://github.com/fossable/goldboot/pull/37)) +- Fix remaining image test +- Migrate core crate into CLI crate +- Begin updating image format for cluster encryption +- Begin to add registry endpoints +- Enable dependabot +- Rename gui crate +- Automatically strip release profile executables +- Migrate goldboot-image crate into goldboot-core +- Begin transition from qcow to custom image container +- Repair the build again +- Change formatter conventions +- Move templates back into core module +- Reorganize into rust workspaces diff --git a/goldboot-registry/Cargo.toml b/goldboot-registry/Cargo.toml index 3a7c1b4..fbf65a9 100644 --- a/goldboot-registry/Cargo.toml +++ b/goldboot-registry/Cargo.toml @@ -14,8 +14,8 @@ rust-version = "1.74" anyhow = "1.0.76" axum = "0.7.4" clap = { version = "4.4.7", features = ["derive", "string"] } -goldboot-image = { path="../goldboot-image", version = "0.0.1" } -goldboot = { path="../goldboot", version = "0.0.2" } +goldboot-image = { path="../goldboot-image", version = "0.0.2" } +goldboot = { path="../goldboot", version = "0.0.3" } reqwest = { version = "0.11.22", features = ["stream"] } tftpd = { version = "0.2.12", optional = true } tokio = { version = "1.34.0", features = ["full"] } diff --git a/goldboot/CHANGELOG.md b/goldboot/CHANGELOG.md index 502c006..0920b64 100644 --- a/goldboot/CHANGELOG.md +++ b/goldboot/CHANGELOG.md @@ -6,6 +6,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.3](https://github.com/fossable/goldboot/compare/goldboot-v0.0.2...goldboot-v0.0.3) - 2024-05-12 + +### Other +- enable nix os +- re-enable goldboot linux +- rename write subcommand -> deploy +- update readme +- continue windows 11 support +- begin windows 11 support +- Autounattend.xml handling on Windows +- refresh windows 10 +- refresh alpine linux +- restore registry crate +- use openssl vendored + ## [0.0.2](https://github.com/fossable/goldboot/compare/goldboot-v0.0.1...goldboot-v0.0.2) - 2024-03-17 ### Fixed diff --git a/goldboot/Cargo.toml b/goldboot/Cargo.toml index 2e0f5bf..50c6757 100644 --- a/goldboot/Cargo.toml +++ b/goldboot/Cargo.toml @@ -8,7 +8,7 @@ name = "goldboot" readme = "README.md" repository = "https://github.com/fossable/goldboot" rust-version = "1.74" -version = "0.0.2" +version = "0.0.3" [dependencies] anyhow = "1.0.76" @@ -31,8 +31,8 @@ gdk4 = { version = "0.8.1", optional = true } gdk-pixbuf = { version = "0.19.2", optional = true } glib-macros = { version = "0.19.2", optional = true } glib = { version = "0.19.2", optional = true } -goldboot-image = { path="../goldboot-image", version = "0.0.1" } -goldboot-macros = { path="../goldboot-macros", version = "0.0.1" } +goldboot-image = { path="../goldboot-image", version = "0.0.2" } +goldboot-macros = { path="../goldboot-macros", version = "0.0.2" } gtk4 = { version = "0.8.1", optional = true, features = ["v4_12"] } hex = "0.4.3" indicatif = "0.17.7"