Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release main #34

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"flipt-java": "0.0.0",
"flipt-node": "0.0.0",
"flipt-python": "0.0.0",
"flipt-rust": "0.0.0"
"flipt-java": "1.0.0",
"flipt-node": "1.0.0",
"flipt-python": "0.1.0",
"flipt-rust": "0.1.0"
}
9 changes: 9 additions & 0 deletions flipt-java/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Changelog

## 1.0.0 (2024-01-11)


### Features

* 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))
2 changes: 1 addition & 1 deletion flipt-java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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

repositories {
Expand Down
9 changes: 9 additions & 0 deletions flipt-node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Changelog

## 1.0.0 (2024-01-11)


### Features

* **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))
2 changes: 1 addition & 1 deletion flipt-node/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
9 changes: 9 additions & 0 deletions flipt-python/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Changelog

## 0.1.0 (2024-01-11)


### Features

* **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))
2 changes: 1 addition & 1 deletion flipt-python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "flipt"
version = "0.0.0"
version = "0.1.0"
description = "Flipt Server SDK"
authors = ["Flipt Devs <dev@flipt.io>"]
license = "MIT"
Expand Down
8 changes: 8 additions & 0 deletions flipt-rust/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog

## 0.1.0 (2024-01-11)


### Features

* **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))
2 changes: 1 addition & 1 deletion flipt-rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "flipt"
description = "Flipt Server SDK"
version = "0.0.0"
version = "0.1.0"
edition = "2021"
author = ["Flipt Devs <dev@flipt.io>"]
license = "MIT"
Expand Down
Loading