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-20 Jérémy Zurcher <jeremy@asynk.ch> + * release 0.1.6 + * fix specs + * fix Node#error404 + 2024-08-14 Jérémy Zurcher <jeremy@asynk.ch> * release 0.1.5 * fix Node#redirect diff --git a/Gemfile.lock b/Gemfile.lock index ac2e9a6..c0f360a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - zorglub (0.1.5) + zorglub (0.1.6) GEM remote: http://rubygems.org/ diff --git a/lib/zorglub.rb b/lib/zorglub.rb index 9cffd3f..07b13e2 100644 --- a/lib/zorglub.rb +++ b/lib/zorglub.rb @@ -1,7 +1,7 @@ #! /usr/bin/env ruby module Zorglub - VERSION = '0.1.5'.freeze + VERSION = '0.1.6'.freeze end require 'zorglub/node' |