From 18a7f52fbb060796e2bc58dc9dcaf05153b4006f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 19 Aug 2026 08:40:13 +0000 Subject: [PATCH] Prepare release v1.2.0 --- CHANGELOG.md | 9 +++++++++ pyproject.toml | 2 +- src/compas_pb/__init__.py | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 19a902a..0b69b9a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +### Changed + +### Removed + + +## [1.2.0] 2026-08-19 + +### Added + * Added `create-proto-bundle`, which zips the `.proto` schemas for upload as a release asset, so downstream generators can pin a schema version instead of reading files out of this repository. * Added TypeScript to the generated bindings, via `@bufbuild/protoc-gen-es`. `PROTO_PLUGIN_LANGUAGES` maps a language to the flag its protoc plugin registers, so javascript and go can be added the same way. * Added an Architecture page describing how one domain model reaches many languages, and who owns `.proto` files versus who implements a runtime. diff --git a/pyproject.toml b/pyproject.toml index 1a1a81e..b7c0e9d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -129,7 +129,7 @@ doctest_optionflags = [ # ============================================================================ [tool.bumpversion] -current_version = "1.1.4" +current_version = "1.2.0" message = "Bump version to {new_version}" commit = false tag = false diff --git a/src/compas_pb/__init__.py b/src/compas_pb/__init__.py index 162677d..2cba036 100644 --- a/src/compas_pb/__init__.py +++ b/src/compas_pb/__init__.py @@ -14,7 +14,7 @@ __copyright__ = "Gramazio Kohler Research" __license__ = "MIT License" __email__ = "kasirer@arch.ethz.ch" -__version__ = "1.1.4" +__version__ = "1.2.0" HERE = os.path.dirname(__file__)