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) 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" 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