Skip to content

Commit

Permalink
Merge pull request #19 from MaterializeInc/doy-version-bump
Browse files Browse the repository at this point in the history
changelog and version bump
  • Loading branch information
doy-materialize authored Mar 4, 2024
2 parents 37572e3 + ad63974 commit 18c0250
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
# Changelog

## [0.3.0] - 2024-03-01

### Changed

* Tweaked the API for configuring concurrency a bit.

## [0.2.1] - 2024-02-29

### Changed
* Allow for configurable max reconciliation concurrency.

* Allow for configurable max reconciliation concurrency.

## [0.2.0] - 2023-08-09

Expand Down
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "k8s-controller"
version = "0.2.1"
version = "0.3.0"
edition = "2021"

description = "lightweight framework for writing kubernetes controllers"
Expand All @@ -10,17 +10,17 @@ license = "Apache-2.0"
include = ["src/**/*", "LICENSE", "README.md", "CHANGELOG.md"]

[dependencies]
async-trait = "0.1.71"
futures = "0.3.28"
async-trait = "0.1"
futures = "0.3"
k8s-openapi = { version = "0.20", features = ["v1_26"] }
kube = { version = "0.87", default-features = false, features = ["client"] }
kube-runtime = "0.87"
rand = "0.8.5"
serde = "1.0.167"
tracing = "0.1.37"
rand = "0.8"
serde = "1"
tracing = "0.1"

[dev-dependencies]
tokio = "1.29.1"
tokio = "1"

[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docs_rs"]

0 comments on commit 18c0250

Please sign in to comment.