Skip to content

Commit e4d982f

Browse files
chore: release (#212)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 8e024c1 commit e4d982f

File tree

9 files changed

+59
-11
lines changed

9 files changed

+59
-11
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

goldboot-image/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.0.3](https://github.com/fossable/goldboot/compare/goldboot-image-v0.0.2...goldboot-image-v0.0.3) - 2024-06-02
10+
11+
### Fixed
12+
- convert_random_data test
13+
14+
### Other
15+
- avoid unexpected qcow2 size
16+
- attempt to use cross-rs image for release job
17+
- continue liveusb command implementation
18+
919
## [0.0.2](https://github.com/fossable/goldboot/compare/goldboot-image-v0.0.1...goldboot-image-v0.0.2) - 2024-05-12
1020

1121
### Other

goldboot-image/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "AGPL-3.0-only"
77
name = "goldboot-image"
88
repository = "https://github.com/fossable/goldboot"
99
rust-version = "1.74"
10-
version = "0.0.2"
10+
version = "0.0.3"
1111

1212
[dependencies]
1313
aes-gcm = { version = "0.10.3", features = ["std"] }

goldboot-linux/CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## [Unreleased]
8+
9+
## [0.0.1](https://github.com/fossable/goldboot/releases/tag/goldboot-linux-v0.0.1) - 2024-06-02
10+
11+
### Other
12+
- create separate goldboot-linux crate
13+
- reorganize crates (again)
14+
- reorganize crates
15+
- move template icons
16+
- remove goldboot-graphics crate
17+
- back to standard formatting
18+
- Fix remaining image test
19+
- Remove vault section and add directory section to image format
20+
- Fix one of the image tests
21+
- Migrate core crate into CLI crate
22+
- Enable dependabot
23+
- Rename gui crate

goldboot-linux/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ gdk4 = { version = "0.8.1" }
1717
gdk-pixbuf = { version = "0.19.2" }
1818
glib-macros = { version = "0.19.2" }
1919
glib = { version = "0.19.2" }
20-
goldboot-image = { path="../goldboot-image", version = "0.0.2" }
21-
goldboot = { path="../goldboot", version = "0.0.7" }
20+
goldboot-image = { path="../goldboot-image", version = "0.0.3" }
21+
goldboot = { path="../goldboot", version = "0.0.8" }
2222
gtk4 = { version = "0.8.1", features = ["v4_12"] }
2323
tracing = "0.1.40"
2424
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }

goldboot-registry/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.0.5](https://github.com/fossable/goldboot/compare/goldboot-registry-v0.0.4...goldboot-registry-v0.0.5) - 2024-06-02
10+
11+
### Other
12+
- updated the following local packages: goldboot, goldboot-image
13+
914
## [0.0.4](https://github.com/fossable/goldboot/compare/goldboot-registry-v0.0.3...goldboot-registry-v0.0.4) - 2024-05-17
1015

1116
### Other

goldboot-registry/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "goldboot-registry"
33
description = "A web service for hosting goldboot images"
4-
version = "0.0.4"
4+
version = "0.0.5"
55
edition = "2021"
66
license = "AGPL-3.0-only"
77
authors = ["Tyler Cook"]
@@ -14,8 +14,8 @@ rust-version = "1.74"
1414
anyhow = "1.0.76"
1515
axum = "0.7.4"
1616
clap = { version = "4.4.7", features = ["derive", "string"] }
17-
goldboot-image = { path="../goldboot-image", version = "0.0.2" }
18-
goldboot = { path="../goldboot", version = "0.0.7" }
17+
goldboot-image = { path="../goldboot-image", version = "0.0.3" }
18+
goldboot = { path="../goldboot", version = "0.0.8" }
1919
reqwest = { version = "0.11.22", features = ["stream"] }
2020
tftpd = { version = "0.2.12", optional = true }
2121
tokio = { version = "1.34.0", features = ["full"] }

goldboot/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.0.8](https://github.com/fossable/goldboot/compare/goldboot-v0.0.7...goldboot-v0.0.8) - 2024-06-02
10+
11+
### Other
12+
- create separate goldboot-linux crate
13+
- rename mold -> os
14+
- avoid unexpected qcow2 size
15+
- attempt to use cross-rs image for release job
16+
- continue liveusb command implementation
17+
- update Github releases URL
18+
919
## [0.0.7](https://github.com/fossable/goldboot/compare/goldboot-v0.0.6...goldboot-v0.0.7) - 2024-05-17
1020

1121
### Other

goldboot/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ name = "goldboot"
88
readme = "README.md"
99
repository = "https://github.com/fossable/goldboot"
1010
rust-version = "1.74"
11-
version = "0.0.7"
11+
version = "0.0.8"
1212

1313
[dependencies]
1414
anyhow = "1.0.76"
@@ -26,7 +26,7 @@ fatfs = { version = "0.3.6", optional = true }
2626
flate2 = "1.0.28"
2727
fossable = "0.1.2"
2828
fscommon = { version = "0.1.1", optional = true }
29-
goldboot-image = { path="../goldboot-image", version = "0.0.2" }
29+
goldboot-image = { path="../goldboot-image", version = "0.0.3" }
3030
goldboot-macros = { path="../goldboot-macros", version = "0.0.2" }
3131
hex = "0.4.3"
3232
indicatif = "0.17.7"

0 commit comments

Comments
 (0)