-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b8a6daa
commit e0eae8d
Showing
3 changed files
with
53 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# Changelog | ||
## [1.2.0](https://github.com/bakdata/kpops/releases/tag/1.2.0) - Release Date: [2023-06-21] | ||
|
||
### 🚀 Features | ||
|
||
- Add `helm repo update <repo-name>` for Helm >3.7 - [#239](https://github.com/bakdata/kpops/pull/239) | ||
|
||
|
||
### 🐛 Fixes | ||
|
||
- add --namespace option to Helm template command - [#237](https://github.com/bakdata/kpops/pull/237) | ||
|
||
- Add missing type annotation for Pydantic attributes - [#238](https://github.com/bakdata/kpops/pull/238) | ||
|
||
- Fix helm version check - [#242](https://github.com/bakdata/kpops/pull/242) | ||
|
||
- Fix Helm Version Check - [#244](https://github.com/bakdata/kpops/pull/244) | ||
|
||
- Fix import from external module - [#256](https://github.com/bakdata/kpops/pull/256) | ||
|
||
|
||
### 🏭 Refactor | ||
|
||
- Remove enable option from helm diff - [#235](https://github.com/bakdata/kpops/pull/235) | ||
|
||
- Refactor variable substitution - [#198](https://github.com/bakdata/kpops/pull/198) | ||
|
||
|
||
|
||
|
||
<summary>Uncategorized</summary> | ||
|
||
- Add background to docs home page - [#236](https://github.com/bakdata/kpops/pull/236) | ||
|
||
- Update Poetry version in CI - [#247](https://github.com/bakdata/kpops/pull/247) | ||
|
||
- Add pip cache in KPOps runner action - [#249](https://github.com/bakdata/kpops/pull/249) | ||
|
||
- Check types using Pyright - [#251](https://github.com/bakdata/kpops/pull/251) | ||
|
||
- Remove MyPy - [#252](https://github.com/bakdata/kpops/pull/252) | ||
|
||
- Disable broken Windows CI temporarily - [#253](https://github.com/bakdata/kpops/pull/253) | ||
|
||
- Update release and publish workflows - [#254](https://github.com/bakdata/kpops/pull/254) | ||
|
||
- Fix release & publish workflows - [#257](https://github.com/bakdata/kpops/pull/257) | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "1.1.5" | ||
__version__ = "1.2.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "kpops" | ||
version = "1.1.5" | ||
version = "1.2.0" | ||
description = "KPOps is a tool to deploy Kafka pipelines to Kubernetes" | ||
authors = ["bakdata <[email protected]>"] | ||
license = "MIT" | ||
|