Skip to content

Commit

Permalink
Release v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bruno-delfino1995 committed Feb 24, 2023
1 parent 91ce971 commit c1d397b
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 18 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ 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.7.0] - 2023-02-23

### Added

Expand Down Expand Up @@ -127,7 +127,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- package description from `kcp.json`
- "extensibility" guarantees by forbidding non object paths to K8s objects

[Unreleased]: https://github.com/bruno-delfino1995/kct/compare/v0.6.0...HEAD
[0.7.0]: https://github.com/bruno-delfino1995/kct/compare/v0.7.0...v0.6.0
[0.6.0]: https://github.com/bruno-delfino1995/kct/compare/v0.6.0...v0.5.0
[0.5.0]: https://github.com/bruno-delfino1995/kct/compare/v0.5.0...v0.4.0
[0.4.0]: https://github.com/bruno-delfino1995/kct/compare/v0.4.0...v0.3.1
Expand Down
27 changes: 19 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ members = [
]

[workspace.package]
version = "0.6.0"
version = "0.7.0"
edition = "2021"
license = "MIT"
authors = ["Bruno Felipe Leal Delfino <bruno.delfino1995@gmail.com>"]
Expand All @@ -23,13 +23,13 @@ assert_matches = "1.5.0"
async-trait = "0.1.64"
either = "1.8.1"
futures = "0.3.26"
kct_cli = { path = "./crates/kct_cli", version = "=0.6.0"}
kct_compiler = { path = "./crates/kct_compiler", version = "=0.6.0"}
kct_helper = { path = "./crates/kct_helper", version = "=0.6.0"}
kct_jsonnet = { path = "./crates/kct_jsonnet", version = "=0.6.0"}
kct_kube = { path = "./crates/kct_kube", version = "=0.6.0"}
kct_package = { path = "./crates/kct_package", version = "=0.6.0"}
kct_testing = { path = "./crates/kct_testing", version = "=0.6.0"}
kct_cli = { path = "./crates/kct_cli", version = "=0.7.0"}
kct_compiler = { path = "./crates/kct_compiler", version = "=0.7.0"}
kct_helper = { path = "./crates/kct_helper", version = "=0.7.0"}
kct_jsonnet = { path = "./crates/kct_jsonnet", version = "=0.7.0"}
kct_kube = { path = "./crates/kct_kube", version = "=0.7.0"}
kct_package = { path = "./crates/kct_package", version = "=0.7.0"}
kct_testing = { path = "./crates/kct_testing", version = "=0.7.0"}
serde_json = "1.0.93"
serde_yaml = "0.8"
tera = "1.17.1"
Expand Down
1 change: 1 addition & 0 deletions crates/kct_kube/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ once_cell = "1.17.1"
regex = "1.7.1"
k8s-openapi = { version = "0.17.0", features = ["v1_26"] }
kube = { version = "0.79.0", features = ["runtime", "derive"] }
openssl = { version = "0.10.45", features = ["vendored"] }

anyhow.workspace = true
async-trait.workspace = true
Expand Down

0 comments on commit c1d397b

Please sign in to comment.