diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 8105302..feeed79 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.1.1" + ".": "1.1.2" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index eb40961..53dbffc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [1.1.2](https://github.com/openfoodfacts/openfoodfacts-python/compare/v1.1.1...v1.1.2) (2024-10-04) + + +### Bug Fixes + +* improve ProductDataset class ([c777d0f](https://github.com/openfoodfacts/openfoodfacts-python/commit/c777d0f383e5b423b85e7853080ef383921844c2)) +* only add HTTP auth headers when it's needed ([5c81025](https://github.com/openfoodfacts/openfoodfacts-python/commit/5c8102598d352f025298b41ff960d1ea1e87c6f4)) +* use new barcode normalization ([b49b362](https://github.com/openfoodfacts/openfoodfacts-python/commit/b49b362f5fcbc422aef724688d7d4622b2a993fc)) + ## [1.1.1](https://github.com/openfoodfacts/openfoodfacts-python/compare/v1.1.0...v1.1.1) (2024-07-18) diff --git a/openfoodfacts/__init__.py b/openfoodfacts/__init__.py index a52c461..2174a00 100644 --- a/openfoodfacts/__init__.py +++ b/openfoodfacts/__init__.py @@ -27,4 +27,4 @@ "get_dataset", ] -__version__ = "1.1.1" +__version__ = "1.1.2" diff --git a/pyproject.toml b/pyproject.toml index 2cc96ab..2a93461 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openfoodfacts" -version = "1.1.1" +version = "1.1.2" description = "Official Python SDK of Open Food Facts" authors = ["The Open Food Facts team"] license = "Apache 2.0"