Skip to content

Commit

Permalink
Bump minimum gRPC requirement to 1.10, update changelog, prep 2.2.1 r…
Browse files Browse the repository at this point in the history
…elease
  • Loading branch information
splittingred committed Mar 14, 2018
1 parent 6745631 commit b3cf812
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,14 @@ Changelog for the gruf gem. This includes internal history before the gem was ma

### Pending release

### 2.2.1

- Now changes proc title once server is ready to process incoming requests [#44]
- Gruf now requires gRPC 1.10.x+ due to various fixes and improvements in the gRPC core libraries

### 2.2.0

- Run server in a monitored thread to allow for trapped exits on sigints
- Run server in a monitored thread to allow for trapped exits on sigints [#43]

### 2.1.1

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ up fast and efficiently at scale. Some of its features include:
still preserving gRPC BadStatus codes
* Server and client execution timings in responses

gruf currently has active support for gRPC 1.4.x-1.9.x. gruf is compatible and tested with Ruby 2.2-2.5.
gruf currently has active support for gRPC 1.10.x+. gruf is compatible and tested with Ruby 2.2-2.5.
gruf is also not [Rails](https://github.com/rails/rails)-specific, and can be used in any Ruby framework
(such as [Grape](https://github.com/ruby-grape/grape), for instance).

Expand Down
4 changes: 2 additions & 2 deletions gruf.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Gem::Specification.new do |spec|
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'pry'

spec.add_runtime_dependency 'grpc', '~> 1.4'
spec.add_runtime_dependency 'grpc-tools', '~> 1.4'
spec.add_runtime_dependency 'grpc', '~> 1.10'
spec.add_runtime_dependency 'grpc-tools', '~> 1.10'
spec.add_runtime_dependency 'activesupport'
end
2 changes: 1 addition & 1 deletion lib/gruf/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
module Gruf
VERSION = '2.2.0'.freeze
VERSION = '2.2.1'.freeze
end

0 comments on commit b3cf812

Please sign in to comment.