Skip to content

Commit 18c0250

Browse files
Merge pull request #19 from MaterializeInc/doy-version-bump
changelog and version bump
2 parents 37572e3 + ad63974 commit 18c0250

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
# Changelog
22

3+
## [0.3.0] - 2024-03-01
4+
5+
### Changed
6+
7+
* Tweaked the API for configuring concurrency a bit.
8+
39
## [0.2.1] - 2024-02-29
410

511
### Changed
6-
* Allow for configurable max reconciliation concurrency.
712

13+
* Allow for configurable max reconciliation concurrency.
814

915
## [0.2.0] - 2023-08-09
1016

Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "k8s-controller"
3-
version = "0.2.1"
3+
version = "0.3.0"
44
edition = "2021"
55

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

1212
[dependencies]
13-
async-trait = "0.1.71"
14-
futures = "0.3.28"
13+
async-trait = "0.1"
14+
futures = "0.3"
1515
k8s-openapi = { version = "0.20", features = ["v1_26"] }
1616
kube = { version = "0.87", default-features = false, features = ["client"] }
1717
kube-runtime = "0.87"
18-
rand = "0.8.5"
19-
serde = "1.0.167"
20-
tracing = "0.1.37"
18+
rand = "0.8"
19+
serde = "1"
20+
tracing = "0.1"
2121

2222
[dev-dependencies]
23-
tokio = "1.29.1"
23+
tokio = "1"
2424

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

0 commit comments

Comments
 (0)