From 5c97f16291d5bf6065ec5e72980744dc9648749e Mon Sep 17 00:00:00 2001 From: "flipt-release-bot[bot]" <119936948+flipt-release-bot[bot]@users.noreply.github.com> Date: Thu, 11 Jan 2024 17:26:25 +0000 Subject: [PATCH] chore: release main --- .release-please-manifest.json | 10 +++++----- flipt-java/CHANGELOG.md | 10 ++++++++++ flipt-java/build.gradle | 2 +- flipt-node/CHANGELOG.md | 10 ++++++++++ flipt-node/package.json | 2 +- flipt-php/CHANGELOG.md | 8 ++++++++ flipt-python/CHANGELOG.md | 10 ++++++++++ flipt-python/pyproject.toml | 2 +- flipt-rust/CHANGELOG.md | 9 +++++++++ flipt-rust/Cargo.toml | 2 +- 10 files changed, 56 insertions(+), 9 deletions(-) create mode 100644 flipt-java/CHANGELOG.md create mode 100644 flipt-node/CHANGELOG.md create mode 100644 flipt-php/CHANGELOG.md create mode 100644 flipt-python/CHANGELOG.md create mode 100644 flipt-rust/CHANGELOG.md diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 32bd29f..28b0d7c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,7 +1,7 @@ { - "flipt-java": "0.0.0", - "flipt-node": "0.0.0", - "flipt-python": "0.0.0", - "flipt-rust": "0.0.0", - "flipt-php": "0.0.0" + "flipt-java": "1.0.0", + "flipt-node": "1.0.0", + "flipt-python": "0.1.0", + "flipt-rust": "0.1.0", + "flipt-php": "1.0.0" } diff --git a/flipt-java/CHANGELOG.md b/flipt-java/CHANGELOG.md new file mode 100644 index 0000000..db43c8e --- /dev/null +++ b/flipt-java/CHANGELOG.md @@ -0,0 +1,10 @@ +# Changelog + +## 1.0.0 (2024-01-11) + + +### Features + +* Add php ([#36](https://github.com/flipt-io/flipt-server-sdks/issues/36)) ([4a47331](https://github.com/flipt-io/flipt-server-sdks/commit/4a47331b0da56e55f0e31b312cffbe0e10248229)) +* impl auth strategy pattern for Java ([#25](https://github.com/flipt-io/flipt-server-sdks/issues/25)) ([3f65c2e](https://github.com/flipt-io/flipt-server-sdks/commit/3f65c2ecab54df3e400b761f9030e8e0666d9a4f)) +* **rust/java/node/python:** Use enums for types with limited values for better type inference on caller side ([#33](https://github.com/flipt-io/flipt-server-sdks/issues/33)) ([03e8d30](https://github.com/flipt-io/flipt-server-sdks/commit/03e8d30f3421f48a5d320bed922b0a589c58aa59)) diff --git a/flipt-java/build.gradle b/flipt-java/build.gradle index b9fb4e4..8e15c5b 100644 --- a/flipt-java/build.gradle +++ b/flipt-java/build.gradle @@ -6,7 +6,7 @@ plugins { group = 'io.flipt' // x-release-please-start-version -version = '0.0.0' +version = '1.0.0' // x-release-please-end description = 'Flipt Server SDK' diff --git a/flipt-node/CHANGELOG.md b/flipt-node/CHANGELOG.md new file mode 100644 index 0000000..bf39e01 --- /dev/null +++ b/flipt-node/CHANGELOG.md @@ -0,0 +1,10 @@ +# Changelog + +## 1.0.0 (2024-01-11) + + +### Features + +* Add php ([#36](https://github.com/flipt-io/flipt-server-sdks/issues/36)) ([4a47331](https://github.com/flipt-io/flipt-server-sdks/commit/4a47331b0da56e55f0e31b312cffbe0e10248229)) +* **rust/java/node/python:** Use enums for types with limited values for better type inference on caller side ([#33](https://github.com/flipt-io/flipt-server-sdks/issues/33)) ([03e8d30](https://github.com/flipt-io/flipt-server-sdks/commit/03e8d30f3421f48a5d320bed922b0a589c58aa59)) +* use authentication strategy for configuring node sdk auth ([#23](https://github.com/flipt-io/flipt-server-sdks/issues/23)) ([277f238](https://github.com/flipt-io/flipt-server-sdks/commit/277f238e09fd7e3429b7a86477dfafba48f0f471)) diff --git a/flipt-node/package.json b/flipt-node/package.json index 8824ecf..ea157c4 100644 --- a/flipt-node/package.json +++ b/flipt-node/package.json @@ -1,6 +1,6 @@ { "name": "@flipt-io/flipt", - "version": "0.0.0", + "version": "1.0.0", "description": "Flipt Server SDK", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/flipt-php/CHANGELOG.md b/flipt-php/CHANGELOG.md new file mode 100644 index 0000000..d5bbd28 --- /dev/null +++ b/flipt-php/CHANGELOG.md @@ -0,0 +1,8 @@ +# Changelog + +## 1.0.0 (2024-01-11) + + +### Features + +* Add php ([#36](https://github.com/flipt-io/flipt-server-sdks/issues/36)) ([4a47331](https://github.com/flipt-io/flipt-server-sdks/commit/4a47331b0da56e55f0e31b312cffbe0e10248229)) diff --git a/flipt-python/CHANGELOG.md b/flipt-python/CHANGELOG.md new file mode 100644 index 0000000..b1bb124 --- /dev/null +++ b/flipt-python/CHANGELOG.md @@ -0,0 +1,10 @@ +# Changelog + +## 0.1.0 (2024-01-11) + + +### Features + +* Add php ([#36](https://github.com/flipt-io/flipt-server-sdks/issues/36)) ([4a47331](https://github.com/flipt-io/flipt-server-sdks/commit/4a47331b0da56e55f0e31b312cffbe0e10248229)) +* **rust/java/node/python:** Use enums for types with limited values for better type inference on caller side ([#33](https://github.com/flipt-io/flipt-server-sdks/issues/33)) ([03e8d30](https://github.com/flipt-io/flipt-server-sdks/commit/03e8d30f3421f48a5d320bed922b0a589c58aa59)) +* use auth strategy for python ([#28](https://github.com/flipt-io/flipt-server-sdks/issues/28)) ([930291a](https://github.com/flipt-io/flipt-server-sdks/commit/930291a47d3a756cd8a4f03d52d369ef7a43edb9)) diff --git a/flipt-python/pyproject.toml b/flipt-python/pyproject.toml index 3c482fb..4a086dc 100644 --- a/flipt-python/pyproject.toml +++ b/flipt-python/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "flipt" -version = "0.0.0" +version = "0.1.0" description = "Flipt Server SDK" authors = ["Flipt Devs "] license = "MIT" diff --git a/flipt-rust/CHANGELOG.md b/flipt-rust/CHANGELOG.md new file mode 100644 index 0000000..ee4f7bf --- /dev/null +++ b/flipt-rust/CHANGELOG.md @@ -0,0 +1,9 @@ +# Changelog + +## 0.1.0 (2024-01-11) + + +### Features + +* Add php ([#36](https://github.com/flipt-io/flipt-server-sdks/issues/36)) ([4a47331](https://github.com/flipt-io/flipt-server-sdks/commit/4a47331b0da56e55f0e31b312cffbe0e10248229)) +* **rust/java/node/python:** Use enums for types with limited values for better type inference on caller side ([#33](https://github.com/flipt-io/flipt-server-sdks/issues/33)) ([03e8d30](https://github.com/flipt-io/flipt-server-sdks/commit/03e8d30f3421f48a5d320bed922b0a589c58aa59)) diff --git a/flipt-rust/Cargo.toml b/flipt-rust/Cargo.toml index e6cd778..322aae0 100644 --- a/flipt-rust/Cargo.toml +++ b/flipt-rust/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "flipt" description = "Flipt Server SDK" -version = "0.0.0" +version = "0.1.0" edition = "2021" author = ["Flipt Devs "] license = "MIT"