summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Anshul Gupta <ansg191@anshulg.com> 2024-12-14 18:12:30 -0800
committerGravatar GitHub <noreply@github.com> 2024-12-14 18:12:30 -0800
commit1bbdb0a4fa468ad1e7ae1acb831144eea81e5244 (patch)
tree51259b55186f1e7bb05b664becad651fafbf01e6
parentf8829ce8ad99904768fd2487ce6386178ba99168 (diff)
downloadrestic-operator-1bbdb0a4fa468ad1e7ae1acb831144eea81e5244.tar.gz
restic-operator-1bbdb0a4fa468ad1e7ae1acb831144eea81e5244.tar.zst
restic-operator-1bbdb0a4fa468ad1e7ae1acb831144eea81e5244.zip
chore: release
Diffstat (limited to '')
-rw-r--r--CHANGELOG.md7
-rw-r--r--Cargo.lock4
-rw-r--r--Cargo.toml4
-rw-r--r--restic-crd/CHANGELOG.md14
-rw-r--r--restic-crd/Cargo.toml2
-rw-r--r--xtask/Cargo.toml2
6 files changed, 27 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b4b7528..a072f61 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
+## [0.1.2](https://github.com/ansg191/restic-operator/compare/restic-operator-v0.1.1...restic-operator-v0.1.2) - 2024-12-15
+
+### Other
+
+- move CRD gen from build.rs to xtask
+- Add pre-release CI
+
## [0.1.1](https://github.com/ansg191/restic-operator/compare/restic-operator-v0.1.0...restic-operator-v0.1.1) - 2024-12-15
### Fixed
diff --git a/Cargo.lock b/Cargo.lock
index 178c924..f7cbc6c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1389,7 +1389,7 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
[[package]]
name = "restic-crd"
-version = "0.1.0"
+version = "0.1.1"
dependencies = [
"bon",
"k8s-openapi",
@@ -1401,7 +1401,7 @@ dependencies = [
[[package]]
name = "restic-operator"
-version = "0.1.1"
+version = "0.1.2"
dependencies = [
"bon",
"futures",
diff --git a/Cargo.toml b/Cargo.toml
index b1b1129..5217f97 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -2,7 +2,7 @@
name = "restic-operator"
description = "Restic Operator"
authors = ["Anshul Gupta <ansg191@anshulg.com>"]
-version = "0.1.1"
+version = "0.1.2"
edition = "2021"
license = "MIT"
publish = ["anshulg"]
@@ -17,7 +17,7 @@ bon = "3.3.0"
futures = { version = "0.3.31", default-features = false, features = ["std", "async-await"] }
k8s-openapi = { version = "0.23.0", default-features = false, features = ["v1_30"] }
kube = { version = "0.97.0", features = ["derive", "runtime"] }
-restic-crd = { version = "0.1.0", path = "restic-crd" , registry = "anshulg" }
+restic-crd = { version = "0.1.1", path = "restic-crd" , registry = "anshulg" }
schemars = "0.8.21"
serde = "1.0.215"
serde_json = "1.0.133"
diff --git a/restic-crd/CHANGELOG.md b/restic-crd/CHANGELOG.md
new file mode 100644
index 0000000..36a5095
--- /dev/null
+++ b/restic-crd/CHANGELOG.md
@@ -0,0 +1,14 @@
+# 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.1.1](https://github.com/ansg191/restic-operator/compare/restic-crd-v0.1.0...restic-crd-v0.1.1) - 2024-12-15
+
+### Fixed
+
+- add shortname and category to CRD definitions
diff --git a/restic-crd/Cargo.toml b/restic-crd/Cargo.toml
index 9741908..dc7ff81 100644
--- a/restic-crd/Cargo.toml
+++ b/restic-crd/Cargo.toml
@@ -2,7 +2,7 @@
name = "restic-crd"
description = "Restic Operator CRD definitions"
authors = ["Anshul Gupta <ansg191@anshulg.com>"]
-version = "0.1.0"
+version = "0.1.1"
edition = "2021"
license = "MIT"
publish = ["anshulg"]
diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml
index 3a9c87a..6d40a14 100644
--- a/xtask/Cargo.toml
+++ b/xtask/Cargo.toml
@@ -8,7 +8,7 @@ publish = false
cargo_metadata = "0.19.1"
clap = { version = "4.5.23", features = ["derive"] }
kube = { version = "0.97.0", default-features = false }
-restic-crd = { version = "0.1.0", path = "../restic-crd", registry = "anshulg" }
+restic-crd = { version = "0.1.1", path = "../restic-crd", registry = "anshulg" }
serde_yaml = "0.9.34"
[lints]