diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2c06029..5e75e4c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.11" + ".": "0.1.12" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index cb5746b..a942111 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [0.1.12](https://github.com/openfoodfacts/openfoodfacts-python/compare/v0.1.11...v0.1.12) (2023-11-10) + + +### Bug Fixes + +* add select_image function to API.product ([d2d0805](https://github.com/openfoodfacts/openfoodfacts-python/commit/d2d0805bcd77cc5ee06dd7994f8e76fb74237a09)) +* add session cookies to all update queries (if needed) ([e3b0de0](https://github.com/openfoodfacts/openfoodfacts-python/commit/e3b0de0aa217672161107b0bbf189e09474a4345)) +* provide authentification in POST requests ([545bbe9](https://github.com/openfoodfacts/openfoodfacts-python/commit/545bbe9b40cf9fa2169e11810f8aec9bcf537d00)) + ## [0.1.11](https://github.com/openfoodfacts/openfoodfacts-python/compare/v0.1.10...v0.1.11) (2023-10-31) diff --git a/openfoodfacts/__init__.py b/openfoodfacts/__init__.py index b51db71..80798a3 100644 --- a/openfoodfacts/__init__.py +++ b/openfoodfacts/__init__.py @@ -25,4 +25,4 @@ "get_dataset", ] -__version__ = "0.1.11" +__version__ = "0.1.12" diff --git a/pyproject.toml b/pyproject.toml index 03dfcf6..c8528cc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openfoodfacts" -version = "0.1.11" +version = "0.1.12" description = "Official Python SDK of Open Food Facts" authors = ["The Open Food Facts team"] license = "Apache 2.0"