about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2019-03-04 00:38:13 +0000
committerEric Wong <e@80x24.org>2019-03-04 00:38:13 +0000
commitc6ab1f479bb36bb0c0e68f375e0ce21533a65ba5 (patch)
tree404c1e84ff70ce49aa493de095f52d9488072d9f
parente09c2ab1fbb27b261bf9299c8b9d88fb5e03f5a5 (diff)
downloadunicorn-c6ab1f479bb36bb0c0e68f375e0ce21533a65ba5.tar.gz
Mostly identical to 5.5.0.pre1, which I didn't hear any feedback
from:

  https://bogomips.org/unicorn-public/20181220222842.GA27382@dcvr/

> Jeremy Evans contributed the "default_middleware" configuration option:
>
>   https://bogomips.org/unicorn-public/20180913192055.GD48926@jeremyevans.local/
>
> Jeremy also contributed the ability to use separate groups for the process
> and log files:
>
>   https://bogomips.org/unicorn-public/20180913192449.GE48926@jeremyevans.local/
>
> There's also a couple of uninteresting minor optimizations and
> documentation additions.

Otherwise, there's one extra change to use
rb_gc_register_mark_object which is finally a documented part of
the Ruby C-API, but has existed since the 1.9 days.
-rwxr-xr-xGIT-VERSION-GEN2
-rw-r--r--unicorn.gemspec2
2 files changed, 2 insertions, 2 deletions
diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN
index 95bdc30..9a534d3 100755
--- a/GIT-VERSION-GEN
+++ b/GIT-VERSION-GEN
@@ -1,5 +1,5 @@
 #!/usr/bin/env ruby
-DEF_VER = "v5.5.0.pre1"
+DEF_VER = "v5.5.0"
 CONSTANT = "Unicorn::Const::UNICORN_VERSION"
 RVF = "lib/unicorn/version.rb"
 GVF = "GIT-VERSION-FILE"
diff --git a/unicorn.gemspec b/unicorn.gemspec
index e64c2ea..ceea831 100644
--- a/unicorn.gemspec
+++ b/unicorn.gemspec
@@ -11,7 +11,7 @@ end.compact
 
 Gem::Specification.new do |s|
   s.name = %q{unicorn}
-  s.version = (ENV['VERSION'] || '5.5.0.pre1').dup
+  s.version = (ENV['VERSION'] || '5.5.0').dup
   s.authors = ['unicorn hackers']
   s.summary = 'Rack HTTP server for fast clients and Unix'
   s.description = File.read('README').split("\n\n")[1]