From 2eaad9407e3b69b88803ee22af6109fa541179bd Mon Sep 17 00:00:00 2001 From: darronschall Date: Mon, 20 May 2024 14:42:33 -0400 Subject: [PATCH 1/3] Bump version to 1.1.0 --- lib/twirp/protoc_plugin/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/twirp/protoc_plugin/version.rb b/lib/twirp/protoc_plugin/version.rb index 63371d0..216f5fd 100644 --- a/lib/twirp/protoc_plugin/version.rb +++ b/lib/twirp/protoc_plugin/version.rb @@ -2,6 +2,6 @@ module Twirp module ProtocPlugin - VERSION = "1.0.0" + VERSION = "1.1.0" end end From b0cad5217f66a8e78acc6cc2099b5485d89f0f9f Mon Sep 17 00:00:00 2001 From: darronschall Date: Mon, 20 May 2024 14:43:48 -0400 Subject: [PATCH 2/3] Update CHANGELOG.md Group unreleased changes into the 1.1.0 release. --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c35b468..9fd96bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## [Unreleased] +- Nothing (yet) + +## [1.1.0] - 2024-05-21 + - Add support for `ruby_package` option in proto files for generated output - [#28](https://github.com/collectiveidea/protoc-gen-twirp_ruby/pull/28) - Update to `protoc` 26.1 to generate the plugin interface Ruby messages - [#27](https://github.com/collectiveidea/protoc-gen-twirp_ruby/pull/27) - Add `generate=` option to customize generated output - [#23](https://github.com/collectiveidea/protoc-gen-twirp_ruby/pull/23) From 0a9342b866b26f55ee38b7b9d1d167756b40fa0d Mon Sep 17 00:00:00 2001 From: darronschall Date: Tue, 21 May 2024 15:00:55 -0400 Subject: [PATCH 3/3] Re-generate example with latest version. ```bash protoc --plugin=protoc-gen-twirp_ruby=./exe/protoc-gen-twirp_ruby --ruby_out=. --twirp_ruby_out=. ./example/hello_world.proto ``` --- example/hello_world_twirp.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/hello_world_twirp.rb b/example/hello_world_twirp.rb index c849eef..6c74b4b 100644 --- a/example/hello_world_twirp.rb +++ b/example/hello_world_twirp.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -# Generated by the protoc-gen-twirp_ruby gem v1.0.0. DO NOT EDIT! +# Generated by the protoc-gen-twirp_ruby gem v1.1.0. DO NOT EDIT! # source: example/hello_world.proto require "twirp"