Skip to content

Commit

Permalink
chore: prep for v0.4.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
markphelps committed Mar 1, 2024
1 parent f0e5094 commit eb9344c
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 6 deletions.
8 changes: 8 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
2 changes: 1 addition & 1 deletion flipt-client-java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

group = 'io.flipt'
version = '0.2.0'
version = '0.3.0'
description = 'Flipt Client SDK'


Expand Down
4 changes: 2 additions & 2 deletions flipt-client-node/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion flipt-client-node/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion flipt-client-python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion flipt-client-ruby/lib/flipt_client/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Flipt
VERSION = '0.3.0'
VERSION = '0.4.0'
end

0 comments on commit eb9344c

Please sign in to comment.