diff options
| -rw-r--r-- | Changelog | 8 | ||||
| -rw-r--r-- | Gemfile.lock | 34 | ||||
| -rw-r--r-- | lib/zorglub.rb | 2 |
3 files changed, 26 insertions, 18 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..14b5dd8 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,41 +1,41 @@ PATH remote: . specs: - zorglub (0.1.6) + zorglub (0.1.8) GEM remote: http://rubygems.org/ specs: - bigdecimal (3.1.8) + bigdecimal (3.2.2) coveralls (0.8.23) json (>= 1.8, < 3) simplecov (~> 0.16.1) term-ansicolor (~> 1.3) thor (>= 0.19.4, < 2.0) tins (~> 1.6) - diff-lcs (1.5.1) + diff-lcs (1.6.2) docile (1.4.1) - ffi (1.17.0) + ffi (1.17.2) haml (6.3.0) temple (>= 0.8.2) thor tilt - json (2.7.2) - rack (3.1.7) - rake (13.2.1) - rspec (3.13.0) + json (2.13.2) + rack (3.2.0) + rake (13.3.0) + rspec (3.13.1) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) rspec-mocks (~> 3.13.0) - rspec-core (3.13.0) + rspec-core (3.13.5) rspec-support (~> 3.13.0) - rspec-expectations (3.13.1) + rspec-expectations (3.13.5) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) - rspec-mocks (3.13.1) + rspec-mocks (3.13.5) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) - rspec-support (3.13.1) + rspec-support (3.13.5) sassc (2.4.0) ffi (~> 1.9) simplecov (0.16.1) @@ -44,12 +44,12 @@ GEM simplecov-html (~> 0.10.0) simplecov-html (0.10.2) sync (0.5.0) - temple (0.10.3) + temple (0.10.4) term-ansicolor (1.11.2) tins (~> 1.0) - thor (1.3.1) - tilt (2.4.0) - tins (1.33.0) + thor (1.4.0) + tilt (2.6.1) + tins (1.42.0) bigdecimal sync @@ -66,4 +66,4 @@ DEPENDENCIES zorglub! BUNDLED WITH - 2.5.17 + 2.7.1 diff --git a/lib/zorglub.rb b/lib/zorglub.rb index 07b13e2..56ca6c4 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.8'.freeze end require 'zorglub/node' |
