Compare commits
6 Commits
e6cda3ad52
...
b804c7ba0a
Author | SHA1 | Date | |
---|---|---|---|
|
b804c7ba0a | ||
838d0c606a | |||
68464938a3 | |||
7c9890a8d5 | |||
80a34851a6 | |||
2e43b9b723 |
24
CHANGELOG.md
24
CHANGELOG.md
@ -6,6 +6,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.4.0] - 2024-12-27
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- add option
|
||||||
|
- use publish tag instead of bool
|
||||||
|
- add publish
|
||||||
|
- update cuddle file
|
||||||
|
- add release action
|
||||||
|
- remove deps
|
||||||
|
- remove ci
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- cuddle file test
|
||||||
|
- release action like main and pr
|
||||||
|
- *(deps)* update rust crate chrono to v0.4.39
|
||||||
|
- *(deps)* update rust crate tracing to v0.1.41
|
||||||
|
|
||||||
|
### Other
|
||||||
|
- *(deps)* update rust crate serde_json to v1.0.134
|
||||||
|
- *(deps)* update rust crate serde to v1.0.216
|
||||||
|
- *(deps)* update rust crate clap to v4.5.23
|
||||||
|
- *(deps)* update all dependencies
|
||||||
|
- *(deps)* update rust crate serde_json to v1.0.133
|
||||||
|
|
||||||
## [0.3.0] - 2024-11-16
|
## [0.3.0] - 2024-11-16
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -3,7 +3,7 @@ members = ["crates/*", "examples/*"]
|
|||||||
resolver = "2"
|
resolver = "2"
|
||||||
|
|
||||||
[workspace.package]
|
[workspace.package]
|
||||||
version = "0.3.0"
|
version = "0.4.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
authors = ["kjuulh <contact@kjuulh.io>"]
|
authors = ["kjuulh <contact@kjuulh.io>"]
|
||||||
|
@ -56,9 +56,19 @@ pub struct CuddleVars {
|
|||||||
pub service: String,
|
pub service: String,
|
||||||
pub registry: String,
|
pub registry: String,
|
||||||
|
|
||||||
|
pub rust: Option<CuddleRustVars>,
|
||||||
|
|
||||||
pub clusters: Option<CuddleClusters>,
|
pub clusters: Option<CuddleClusters>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[derive(Clone, Debug, Deserialize, Serialize, PartialEq)]
|
||||||
|
pub struct CuddleRustVars {
|
||||||
|
pub publish: Option<CuddleRustPublishVars>,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Clone, Debug, Deserialize, Serialize, PartialEq)]
|
||||||
|
pub struct CuddleRustPublishVars {}
|
||||||
|
|
||||||
#[derive(Clone, Debug, Deserialize, Serialize, PartialEq)]
|
#[derive(Clone, Debug, Deserialize, Serialize, PartialEq)]
|
||||||
pub struct CuddleDeployment {
|
pub struct CuddleDeployment {
|
||||||
pub registry: String,
|
pub registry: String,
|
||||||
@ -168,6 +178,7 @@ scripts:
|
|||||||
service: "infrastructure-example".into(),
|
service: "infrastructure-example".into(),
|
||||||
registry: "kasperhermansen".into(),
|
registry: "kasperhermansen".into(),
|
||||||
clusters: Some(CuddleClusters(clusters)),
|
clusters: Some(CuddleClusters(clusters)),
|
||||||
|
rust: None,
|
||||||
},
|
},
|
||||||
deployment: Some(crate::cuddle_file::CuddleDeployment {
|
deployment: Some(crate::cuddle_file::CuddleDeployment {
|
||||||
registry: "git@git.front.kjuulh.io:kjuulh/clank-clusters".into(),
|
registry: "git@git.front.kjuulh.io:kjuulh/clank-clusters".into(),
|
||||||
@ -215,6 +226,7 @@ components:
|
|||||||
service: "infrastructure-example".into(),
|
service: "infrastructure-example".into(),
|
||||||
registry: "kasperhermansen".into(),
|
registry: "kasperhermansen".into(),
|
||||||
clusters: None,
|
clusters: None,
|
||||||
|
rust: None,
|
||||||
},
|
},
|
||||||
deployment: None,
|
deployment: None,
|
||||||
components: Some(CuddleComponents {
|
components: Some(CuddleComponents {
|
||||||
@ -253,6 +265,7 @@ components:
|
|||||||
service: "infrastructure-example".into(),
|
service: "infrastructure-example".into(),
|
||||||
registry: "kasperhermansen".into(),
|
registry: "kasperhermansen".into(),
|
||||||
clusters: None,
|
clusters: None,
|
||||||
|
rust: None,
|
||||||
},
|
},
|
||||||
deployment: None,
|
deployment: None,
|
||||||
components: Some(CuddleComponents {
|
components: Some(CuddleComponents {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user