From d5498cb341c1c4ce8c44f9eee4c77c52c9676af8 Mon Sep 17 00:00:00 2001 From: Open Food Facts Bot <119524357+openfoodfacts-bot@users.noreply.github.com> Date: Thu, 7 May 2026 11:06:19 +0200 Subject: [PATCH] chore(develop): release 5.1.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 16 ++++++++++++++++ pyproject.toml | 2 +- src/openfoodfacts/__init__.py | 2 +- 4 files changed, 19 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2fbf78c7..86753ed0 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "5.0.1" + ".": "5.1.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 35b82025..9921cd7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [5.1.0](https://github.com/openfoodfacts/openfoodfacts-python/compare/v5.0.1...v5.1.0) (2026-05-07) + + +### Features + +* **Taxonomy:** allow fetching taxonomies from other flavors (obf, opff, opf) ([#466](https://github.com/openfoodfacts/openfoodfacts-python/issues/466)) ([e5474de](https://github.com/openfoodfacts/openfoodfacts-python/commit/e5474dedb802bfca74ed5628d235f08d1124117d)) +* **Taxonomy:** children method parity with parent methods ([#467](https://github.com/openfoodfacts/openfoodfacts-python/issues/467)) ([08f27b8](https://github.com/openfoodfacts/openfoodfacts-python/commit/08f27b8cc5071cdc1c7161af515d2e6838d2a54f)) + + +### Technical + +* add a CONTRIBUTING.md ([#473](https://github.com/openfoodfacts/openfoodfacts-python/issues/473)) ([3252d61](https://github.com/openfoodfacts/openfoodfacts-python/commit/3252d616978ce2f195e0df12a5046756ef60705e)) +* add a new Utilities section (barcode-related). Explain how to use the API for other flavors ([#470](https://github.com/openfoodfacts/openfoodfacts-python/issues/470)) ([a5504e3](https://github.com/openfoodfacts/openfoodfacts-python/commit/a5504e353ff98a80df96b8b64253d311be00aa3a)) +* **deps:** add `pre-commit` to the dev dependencies ([#472](https://github.com/openfoodfacts/openfoodfacts-python/issues/472)) ([6df90e2](https://github.com/openfoodfacts/openfoodfacts-python/commit/6df90e28d6cfa195e11612637e1ad7bfe234a377)) +* **Taxonomy:** replace TAXONOMY_URLS with TAXONOMY_MAPPING and a single method to build the url ([#475](https://github.com/openfoodfacts/openfoodfacts-python/issues/475)) ([0f83128](https://github.com/openfoodfacts/openfoodfacts-python/commit/0f831282bc433ca2663e861e5421a90def998316)) + ## [5.0.1](https://github.com/openfoodfacts/openfoodfacts-python/compare/v5.0.0...v5.0.1) (2026-03-18) diff --git a/pyproject.toml b/pyproject.toml index a8519772..c98ddebb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "openfoodfacts" -version = "5.0.1" +version = "5.1.0" authors = [ {name = "The Open Food Facts team", email = "contact@openfoodfacts.org"} ] diff --git a/src/openfoodfacts/__init__.py b/src/openfoodfacts/__init__.py index 8b01ea45..b46abeea 100644 --- a/src/openfoodfacts/__init__.py +++ b/src/openfoodfacts/__init__.py @@ -30,4 +30,4 @@ "normalize_barcode", ] -__version__ = "5.0.1" +__version__ = "5.1.0"