From 143b3527755482c520cc1b87d1528a82046dd099 Mon Sep 17 00:00:00 2001 From: Levente Polyak Date: Sat, 5 Apr 2025 16:17:04 +0200 Subject: [PATCH] bindings: ruby: fix version identifier to 2.1.3 (#2142) --- bindings/ruby/Makefile | 2 +- bindings/ruby/unicorn_gem/lib/unicorn_engine/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bindings/ruby/Makefile b/bindings/ruby/Makefile index af925e3e..bd21b57c 100644 --- a/bindings/ruby/Makefile +++ b/bindings/ruby/Makefile @@ -5,7 +5,7 @@ # Use bundle install && rake to install gem and test install: gen_const cd unicorn_gem && rake build - cd unicorn_gem && gem install --local pkg/unicorn-engine-2.1.1.gem + cd unicorn_gem && gem install --local pkg/unicorn-engine-2.1.3.gem gen_const: cd .. && python3 const_generator.py ruby diff --git a/bindings/ruby/unicorn_gem/lib/unicorn_engine/version.rb b/bindings/ruby/unicorn_gem/lib/unicorn_engine/version.rb index b5091e77..df28ba57 100644 --- a/bindings/ruby/unicorn_gem/lib/unicorn_engine/version.rb +++ b/bindings/ruby/unicorn_gem/lib/unicorn_engine/version.rb @@ -1,3 +1,3 @@ module Unicorn - VERSION = "2.1.1" + VERSION = "2.1.3" end