Skip to content

Commit

Permalink
Release 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasz-antoniak committed Jul 4, 2024
1 parent a10b166 commit cc85b1c
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 2 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG/CHANGELOG-2.3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Changelog

Changelog for the ZDM Proxy, new PRs should update the `unreleased` section.

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.

## Unreleased

## v2.3.0 - 2024-07-04

### New Features

* [#123](https://github.com/datastax/zdm-proxy/pull/123): Support providing configuration of ZDM with YAML file

### Improvements

### Bug Fixes
6 changes: 6 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ Build artifacts are available at [Docker Hub](https://hub.docker.com/repository/

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

## v2.3.0 - 2024-07-04

Support providing configuration of ZDM with YAML file.

[Changelog](CHANGELOG/CHANGELOG-2.3.md#v230---2024-07-04)

## v2.2.0 - 2024-06-11

Support SAI queries and third-party authenticators.
Expand Down
2 changes: 1 addition & 1 deletion RELEASE_PROCESS.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ All published container images can be found at [https://hub.docker.com/r/datasta

### Before publishing an official release

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`.
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`.

Please update the ZDM version displayed during component startup in `launch.go`:
```go
Expand Down
2 changes: 1 addition & 1 deletion proxy/launch.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
)

// TODO: to be managed externally
const ZdmVersionString = "2.2.0"
const ZdmVersionString = "2.3.0"

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

0 comments on commit cc85b1c

Please sign in to comment.