diff --git a/CHANGELOG.md b/CHANGELOG.md index eb4b94926..9d655de24 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +## [Unreleased] + +### Added + +### Changed + +### Deprecated + +### Removed + +### Fixed + +### Security + +### Dependencies + ## [3.1.0] ### Added diff --git a/RELEASING.md b/RELEASING.md index af97b5478..174e78126 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -38,7 +38,7 @@ The release process is standard across repositories in this org and is run by a 3. Edit the [CHANGELOG](CHANGELOG.md) and replace the `Unreleased` section with the version about to be released. 4. Add a comparison link to the new version at the bottom of the [CHANGELOG](CHANGELOG.md). 5. Create a pull request with the changes into `main`, e.g. [opensearch-go#443](https://github.com/opensearch-project/opensearch-go/pull/443). -6. Create a tag, e.g. `v3.0.1`, and push it to the GitHub repo. This [makes the new version available](https://go.dev/doc/modules/publishing) on [pkg.go.dev](https://pkg.go.dev/github.com/opensearch-project/opensearch-go). +6. Create a tag, e.g. `v3.0.1`, and push it to the GitHub repo. This [makes the new version available](https://go.dev/doc/modules/publishing) on [pkg.go.dev](https://pkg.go.dev/github.com/opensearch-project/opensearch-go/v3). 7. Draft and publish a [new GitHub release](https://github.com/opensearch-project/opensearch-go/releases/new) from the newly created tag. 8. Create a new `Unreleased` section in the [CHANGELOG](CHANGELOG.md), increment version in [version.go](internal/version/version.go) to the next developer iteration (e.g. `3.0.2`), and make a pull request with this change into `main`, e.g. [opensearch-go#448](https://github.com/opensearch-project/opensearch-go/pull/448). ``` diff --git a/internal/version/version.go b/internal/version/version.go index 64c3a30f9..06aa582a8 100644 --- a/internal/version/version.go +++ b/internal/version/version.go @@ -27,4 +27,4 @@ package version // Client returns the client version as a string. -const Client = "3.1.0" +const Client = "3.1.1"