From cba485aac0511f1a9fb0674d211515fe239bf582 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 6 Feb 2024 18:46:44 +0000 Subject: [PATCH] chore(main): release 0.1.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 15 +++++++++++++++ docs/conf.py | 4 ++-- pyproject.toml | 2 +- 4 files changed, 19 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e18ee07..466df71 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.0" + ".": "0.1.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index e69de29..e2bca5c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -0,0 +1,15 @@ +# Changelog + +## 0.1.0 (2024-02-06) + + +### Features + +* Add documentation generation support ([f6d769d](https://github.com/launchdarkly/openfeature-python-server/commit/f6d769d3e45da60fbd9b7c01d3b8c903a66e975a)) +* Add initial implementation of provider ([a27e98a](https://github.com/launchdarkly/openfeature-python-server/commit/a27e98a6e7483fce812e1bee9fb2a85582396d5a)) +* Add support for shutdown method ([#3](https://github.com/launchdarkly/openfeature-python-server/issues/3)) ([8ed56a6](https://github.com/launchdarkly/openfeature-python-server/commit/8ed56a68db3be92c1c0ff58ddd28a9511bf98cdf)) + + +### Documentation + +* Add supporting documentation ([06a3701](https://github.com/launchdarkly/openfeature-python-server/commit/06a370193f151207c15c06a82a44ffbb68949455)) diff --git a/docs/conf.py b/docs/conf.py index d1a8923..5fa7ab4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -30,9 +30,9 @@ author = u'LaunchDarkly' # The short X.Y version. -version = '0.0.0' # x-release-please-version +version = '0.1.0' # x-release-please-version # The full version, including alpha/beta/rc tags. -release = '0.0.0' # x-release-please-version +release = '0.1.0' # x-release-please-version # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 87c8d88..4b700da 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "launchdarkly-openfeature-server" -version = "0.0.0" +version = "0.1.0" description = "An OpenFeature provider for the LaunchDarkly Python server SDK" authors = ["LaunchDarkly "] license = "Apache-2.0"