diff --git a/CHANGELOG.md b/CHANGELOG.md index 5de963a0..d2bfba95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Release Notes +## [3.3.0](https://github.com/cpcloud/protoletariat/compare/3.2.19...3.3.0) (2024-10-18) + +### Features + +* **deps:** support protobuf 5 ([5661046](https://github.com/cpcloud/protoletariat/commit/5661046f5f3376739fbbbe903dcd87ddd0c6253a)) + +### Bug Fixes + +* **python:** continue to support python 3.8 ([64fc00e](https://github.com/cpcloud/protoletariat/commit/64fc00e06be9b1b790d3ee09f885819e147bce0a)) + ## [3.2.19](https://github.com/cpcloud/protoletariat/compare/3.2.18...3.2.19) (2023-08-27) diff --git a/protoletariat/__init__.py b/protoletariat/__init__.py index 889d546a..acc4d5ca 100644 --- a/protoletariat/__init__.py +++ b/protoletariat/__init__.py @@ -2,4 +2,4 @@ from __future__ import annotations -__version__ = "3.2.19" +__version__ = "3.3.0" diff --git a/pyproject.toml b/pyproject.toml index 600d69bf..0dbc019d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "protoletariat" -version = "3.2.19" +version = "3.3.0" packages = [{ include = "protoletariat" }] homepage = "https://github.com/cpcloud/protoletariat" repository = "https://github.com/cpcloud/protoletariat"