chore(main): release 0.4.1 (#235)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
3001cf9b0f
commit
e24a6347a1
|
|
@ -1 +1 @@
|
|||
{".":"0.4.0"}
|
||||
{".":"0.4.1"}
|
||||
|
|
@ -1,5 +1,14 @@
|
|||
# Changelog
|
||||
|
||||
## [0.4.1](https://github.com/open-feature/python-sdk/compare/v0.4.0...v0.4.1) (2023-11-08)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* add PEP 561 py.typed marker file ([#232](https://github.com/open-feature/python-sdk/issues/232)) ([db50494](https://github.com/open-feature/python-sdk/commit/db504946d1aea7e653e5755d703cff3d52b455dd))
|
||||
* fix types for HookContext.{client,provider}_metadata ([#233](https://github.com/open-feature/python-sdk/issues/233)) ([4bdd384](https://github.com/open-feature/python-sdk/commit/4bdd384544c24f5d9942c1e6261689c6b8ceb7de))
|
||||
* replace str with enum value in InMemoryFlag definition ([#234](https://github.com/open-feature/python-sdk/issues/234)) ([963b01e](https://github.com/open-feature/python-sdk/commit/963b01e66d6ebe8062beaf3bfa0d034a312c037e))
|
||||
|
||||
## [0.4.0](https://github.com/open-feature/python-sdk/compare/v0.3.1...v0.4.0) (2023-11-01)
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -19,8 +19,8 @@
|
|||
|
||||
<!-- x-release-please-start-version -->
|
||||
|
||||
<a href="https://github.com/open-feature/python-sdk/releases/tag/v0.4.0">
|
||||
<img alt="Latest version" src="https://img.shields.io/static/v1?label=release&message=v0.4.0&color=blue&style=for-the-badge" />
|
||||
<a href="https://github.com/open-feature/python-sdk/releases/tag/v0.4.1">
|
||||
<img alt="Latest version" src="https://img.shields.io/static/v1?label=release&message=v0.4.1&color=blue&style=for-the-badge" />
|
||||
</a>
|
||||
|
||||
<!-- x-release-please-end -->
|
||||
|
|
@ -60,13 +60,13 @@
|
|||
#### Pip install
|
||||
|
||||
```bash
|
||||
pip install openfeature-sdk==0.4.0
|
||||
pip install openfeature-sdk==0.4.1
|
||||
```
|
||||
|
||||
#### requirements.txt
|
||||
|
||||
```bash
|
||||
openfeature-sdk==0.4.0
|
||||
openfeature-sdk==0.4.1
|
||||
```
|
||||
|
||||
```python
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
|
|||
|
||||
[project]
|
||||
name = "openfeature_sdk"
|
||||
version = "0.4.0"
|
||||
version = "0.4.1"
|
||||
description = "Standardizing Feature Flagging for Everyone"
|
||||
readme = "README.md"
|
||||
authors = [{ name = "OpenFeature", email = "openfeature-core@groups.io" }]
|
||||
|
|
|
|||
Loading…
Reference in New Issue