diff options
-rw-r--r-- | Changelog | 8 | ||||
-rw-r--r-- | Gemfile.lock | 2 | ||||
-rw-r--r-- | lib/zorglub.rb | 2 |
3 files changed, 10 insertions, 2 deletions
@@ -1,3 +1,11 @@ +2024-10-01 Jérémy Zurcher <jeremy@asynk.ch> + * release 0.1.7 + * debug to stdout + * simplify static code path + * fix error404 msg + * use keyword arguments + + 2024-08-20 Jérémy Zurcher <jeremy@asynk.ch> * release 0.1.6 * fix specs diff --git a/Gemfile.lock b/Gemfile.lock index c0f360a..9463749 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - zorglub (0.1.6) + zorglub (0.1.7) GEM remote: http://rubygems.org/ diff --git a/lib/zorglub.rb b/lib/zorglub.rb index 07b13e2..4f6c5b5 100644 --- a/lib/zorglub.rb +++ b/lib/zorglub.rb @@ -1,7 +1,7 @@ #! /usr/bin/env ruby module Zorglub - VERSION = '0.1.6'.freeze + VERSION = '0.1.7'.freeze end require 'zorglub/node' |