From cf4496953774146fe66a5084ad68097a7c7522c9 Mon Sep 17 00:00:00 2001 From: darronschall Date: Wed, 22 May 2024 10:57:31 -0400 Subject: [PATCH 1/3] Bump version to 1.1.1 --- 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 216f5fd..ad25cea 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.1.0" + VERSION = "1.1.1" end end From 9ed1896c0d6a5f37e638a7b45fe093dc585910cb Mon Sep 17 00:00:00 2001 From: darronschall Date: Wed, 22 May 2024 10:59:28 -0400 Subject: [PATCH 2/3] Update CHANGELOG.md --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 440e71b..b4fefe6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ ## [Unreleased] +## [1.1.1] - 2024-05-22 + - Remove unnecessary `racc` runtime dependency - [#33](https://github.com/collectiveidea/protoc-gen-twirp_ruby/pull/33) ## [1.1.0] - 2024-05-21 From 94da49856ae4c08ebca1f6ee666458e2678f6e0e Mon Sep 17 00:00:00 2001 From: darronschall Date: Wed, 22 May 2024 10:59:51 -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 6c74b4b..8208f88 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.1.0. DO NOT EDIT! +# Generated by the protoc-gen-twirp_ruby gem v1.1.1. DO NOT EDIT! # source: example/hello_world.proto require "twirp"