diff options
-rw-r--r-- | Changelog | 5 | ||||
-rw-r--r-- | Gemfile.lock | 2 | ||||
-rw-r--r-- | lib/zorglub.rb | 2 |
3 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2024-08-14 Jérémy Zurcher <jeremy@asynk.ch> + * release 0.1.4 + * complie with rack >= 2.1.0 + * downcase headers + 2024-08-13 Jérémy Zurcher <jeremy@asynk.ch> * release 0.1.3 * fix specs diff --git a/Gemfile.lock b/Gemfile.lock index bbdff45..f9a2ec3 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - zorglub (0.1.0) + zorglub (0.1.4) GEM remote: http://rubygems.org/ diff --git a/lib/zorglub.rb b/lib/zorglub.rb index 1d14ec0..2546067 100644 --- a/lib/zorglub.rb +++ b/lib/zorglub.rb @@ -1,7 +1,7 @@ #! /usr/bin/env ruby module Zorglub - VERSION = '0.1.3'.freeze + VERSION = '0.1.4'.freeze end require 'zorglub/node' |