diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a4632c0..d6dd574 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.1.3" + ".": "1.1.4" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 081e72c..15ef9c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [1.1.4](https://github.com/openfoodfacts/openfoodfacts-python/compare/v1.1.3...v1.1.4) (2024-10-08) + + +### Bug Fixes + +* add new functions related to barcodes ([6faadc1](https://github.com/openfoodfacts/openfoodfacts-python/commit/6faadc1ea00b9ade6dfad50ba9cd5c261a4dcf8a)) +* increase csv field_size_limit to accommodate large fields ([94be4d3](https://github.com/openfoodfacts/openfoodfacts-python/commit/94be4d3cda2adf2967062cfedc289337c5e99842)) +* make RedisUpdate.product_type mandatory ([3cb66b1](https://github.com/openfoodfacts/openfoodfacts-python/commit/3cb66b1971b92514df9c965a2b9f9e7b51e5053f)) + ## [1.1.3](https://github.com/openfoodfacts/openfoodfacts-python/compare/v1.1.2...v1.1.3) (2024-10-04) diff --git a/openfoodfacts/__init__.py b/openfoodfacts/__init__.py index 872b8e3..4840a29 100644 --- a/openfoodfacts/__init__.py +++ b/openfoodfacts/__init__.py @@ -30,4 +30,4 @@ "normalize_barcode", ] -__version__ = "1.1.3" +__version__ = "1.1.4" diff --git a/pyproject.toml b/pyproject.toml index f07625d..d59c3cd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "openfoodfacts" -version = "1.1.3" +version = "1.1.4" description = "Official Python SDK of Open Food Facts" authors = ["The Open Food Facts team"] license = "Apache 2.0"