diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 20e9dbd..02751ec 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.1.0" + ".": "2.2.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a4dfa5..56ec15a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [2.2.0](https://github.com/openfoodfacts/openfoodfacts-python/compare/v2.1.0...v2.2.0) (2024-11-06) + + +### Features + +* add map_to_canonical_id function ([#287](https://github.com/openfoodfacts/openfoodfacts-python/issues/287)) ([cde7683](https://github.com/openfoodfacts/openfoodfacts-python/commit/cde7683aa7376b17ddc621a0a99efdcf94bbcf96)) + ## [2.1.0](https://github.com/openfoodfacts/openfoodfacts-python/compare/v2.0.0...v2.1.0) (2024-11-06) diff --git a/openfoodfacts/__init__.py b/openfoodfacts/__init__.py index 3491952..b8ae97c 100644 --- a/openfoodfacts/__init__.py +++ b/openfoodfacts/__init__.py @@ -30,4 +30,4 @@ "normalize_barcode", ] -__version__ = "2.1.0" +__version__ = "2.2.0" diff --git a/pyproject.toml b/pyproject.toml index 433d49f..7248ded 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openfoodfacts" -version = "2.1.0" +version = "2.2.0" description = "Official Python SDK of Open Food Facts" authors = ["The Open Food Facts team"] license = "Apache 2.0"