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