chore(main): release 0.0.9 (#70)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2023-01-27 09:37:51 -05:00 committed by GitHub
parent 1665225db4
commit 511262d971
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 16 additions and 4 deletions

View File

@ -1 +1 @@
{".":"0.0.8"} {".":"0.0.9"}

View File

@ -1,5 +1,17 @@
# Changelog # Changelog
## [0.0.9](https://github.com/open-feature/python-sdk/compare/v0.0.8...v0.0.9) (2023-01-19)
### Bug Fixes
* reverse the merged before hooks ([#71](https://github.com/open-feature/python-sdk/issues/71)) ([3a33551](https://github.com/open-feature/python-sdk/commit/3a33551fdbd01c876920177ab2035d0e24e17572))
### Documentation
* add NoOpProvider import to config sample ([#68](https://github.com/open-feature/python-sdk/issues/68)) ([643d9fa](https://github.com/open-feature/python-sdk/commit/643d9fa34f94f6ca1f9a5d4251097a3f98dae43e))
## [0.0.8](https://github.com/open-feature/python-sdk/compare/v0.0.7...v0.0.8) (2022-12-28) ## [0.0.8](https://github.com/open-feature/python-sdk/compare/v0.0.7...v0.0.8) (2022-12-28)

View File

@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "openfeature_sdk" name = "openfeature_sdk"
version = "0.0.8" version = "0.0.9"
description = "Standardizing Feature Flagging for Everyone" description = "Standardizing Feature Flagging for Everyone"
readme = "readme.md" readme = "readme.md"
authors = [{ name = "OpenFeature", email = "openfeature-core@groups.io" }] authors = [{ name = "OpenFeature", email = "openfeature-core@groups.io" }]

View File

@ -42,13 +42,13 @@ Each provider class may have further setup required i.e. secret keys, environmen
Pip install Pip install
```bash ```bash
pip install openfeature-sdk==0.0.8 pip install openfeature-sdk==0.0.9
``` ```
requirements.txt requirements.txt
```bash ```bash
openfeature-sdk==0.0.8 openfeature-sdk==0.0.9
``` ```
```python ```python