Skip to content

Commit 6e2fcb2

Browse files
authoredJul 4, 2024··
Release 2.3.0 (#124)
1 parent a10b166 commit 6e2fcb2

File tree

4 files changed

+25
-2
lines changed

4 files changed

+25
-2
lines changed
 

‎CHANGELOG/CHANGELOG-2.3.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Changelog
2+
3+
Changelog for the ZDM Proxy, new PRs should update the `unreleased` section.
4+
5+
When cutting a new release, update the `unreleased` heading to the tag being generated and date, like `## vX.Y.Z - YYYY-MM-DD` and create a new placeholder section for `unreleased` entries.
6+
7+
## Unreleased
8+
9+
## v2.3.0 - 2024-07-04
10+
11+
### New Features
12+
13+
* [#123](https://github.com/datastax/zdm-proxy/pull/123): Support providing configuration of ZDM with YAML file
14+
15+
### Improvements
16+
17+
### Bug Fixes

‎RELEASE_NOTES.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ Build artifacts are available at [Docker Hub](https://hub.docker.com/repository/
66

77
For additional details on the changes included in a specific release, see the associated CHANGELOG-x.x.md file.
88

9+
## v2.3.0 - 2024-07-04
10+
11+
Support providing configuration of ZDM with YAML file.
12+
13+
[Changelog](CHANGELOG/CHANGELOG-2.3.md#v230---2024-07-04)
14+
915
## v2.2.0 - 2024-06-11
1016

1117
Support SAI queries and third-party authenticators.

‎RELEASE_PROCESS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ All published container images can be found at [https://hub.docker.com/r/datasta
66

77
### Before publishing an official release
88

9-
Before triggering the build and publish process for an official/stable release, three files need to be updated, the `RELEASE_NOTES`, `CHANGELOG` and `main.go`.
9+
Before triggering the build and publish process for an official/stable release, three files need to be updated, the `RELEASE_NOTES`, `CHANGELOG` and `launch.go`.
1010

1111
Please update the ZDM version displayed during component startup in `launch.go`:
1212
```go

‎proxy/launch.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
)
1414

1515
// TODO: to be managed externally
16-
const ZdmVersionString = "2.2.0"
16+
const ZdmVersionString = "2.3.0"
1717

1818
var displayVersion = flag.Bool("version", false, "display the ZDM proxy version and exit")
1919
var configFile = flag.String("config", "", "specify path to ZDM configuration file")

0 commit comments

Comments
 (0)
Please sign in to comment.