diff --git a/RELEASE.md b/RELEASE.md index 9a1215f5..e59abd4a 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -38,3 +38,11 @@ We use [release-please](https://github.com/googleapis/release-please>) to genera 1. Push the tag to `origin`. This will trigger the appropriate GitHub Action to build, package, and publish the SDK. Note: In the future we can potentially automate the tagging/pushing of the SDKs via a GitHub Action or script. + +#### Checklist + +- [ ] Update the `flipt-client-node` version in `flipt-client-node/package.json` and run `npm install` +- [ ] Update the `flipt-client-python` version in `flipt-client-python/pyproject.toml` +- [ ] Update the `flipt-client-ruby` version in `flipt-client-ruby/lib/flipt_client/version.rb` +- [ ] Update the `flipt-client-java` version in `flipt-client-java/build.gradle` +- [ ] Tag each SDK with the new version and push the tags to `origin` diff --git a/flipt-client-java/build.gradle b/flipt-client-java/build.gradle index e5ce3817..8dc44b85 100644 --- a/flipt-client-java/build.gradle +++ b/flipt-client-java/build.gradle @@ -8,7 +8,7 @@ plugins { } group = 'io.flipt' -version = '0.2.0' +version = '0.3.0' description = 'Flipt Client SDK' diff --git a/flipt-client-node/package-lock.json b/flipt-client-node/package-lock.json index ab062319..7073a0a7 100644 --- a/flipt-client-node/package-lock.json +++ b/flipt-client-node/package-lock.json @@ -1,12 +1,12 @@ { "name": "@flipt-io/flipt-client", - "version": "0.3.0", + "version": "0.4.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@flipt-io/flipt-client", - "version": "0.3.0", + "version": "0.4.0", "license": "MIT", "dependencies": { "@types/ffi": "^0.2.7", diff --git a/flipt-client-node/package.json b/flipt-client-node/package.json index 7097a5e0..764b032f 100644 --- a/flipt-client-node/package.json +++ b/flipt-client-node/package.json @@ -1,6 +1,6 @@ { "name": "@flipt-io/flipt-client", - "version": "0.3.0", + "version": "0.4.0", "description": "Flipt Client Evaluation SDK", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/flipt-client-python/pyproject.toml b/flipt-client-python/pyproject.toml index fcda2689..49d8e4b3 100644 --- a/flipt-client-python/pyproject.toml +++ b/flipt-client-python/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] include = [{ path = "ext/**/*" }, { path = "README.md" }] name = "flipt-client" -version = "0.3.0" +version = "0.4.0" description = "Flipt Client Evaluation SDK" authors = ["Flipt Devs "] readme = "README.md" diff --git a/flipt-client-ruby/lib/flipt_client/version.rb b/flipt-client-ruby/lib/flipt_client/version.rb index 69b58b6c..5f4bb5ce 100644 --- a/flipt-client-ruby/lib/flipt_client/version.rb +++ b/flipt-client-ruby/lib/flipt_client/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Flipt - VERSION = '0.3.0' + VERSION = '0.4.0' end