summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Changelog14
-rw-r--r--Gemfile.lock4
-rw-r--r--lib/zorglub.rb2
3 files changed, 16 insertions, 4 deletions
diff --git a/Changelog b/Changelog
index c15ddf9..1731aaa 100644
--- a/Changelog
+++ b/Changelog
@@ -1,3 +1,16 @@
+
+2026-02-16 Jérémy Zurcher <jeremy@asynk.ch>
+ * release 0.1.9
+ * support nil meth
+ * may override view in partial call
+ * local variables, recursion check, instance level partial method
+ * partial(env, …) -> partial(… env: {}, no_hooks: false)
+ * use securerandom
+
+2025-04-09 Jérémy Zurcher <jeremy@asynk.ch>
+ * release 0.1.8
+ * bundle update
+
2024-10-01 Jérémy Zurcher <jeremy@asynk.ch>
* release 0.1.7
* debug to stdout
@@ -5,7 +18,6 @@
* 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 968a683..946066d 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
- zorglub (0.1.8)
+ zorglub (0.1.9)
GEM
remote: http://rubygems.org/
@@ -23,7 +23,7 @@ GEM
io-console (0.8.2)
json (2.18.1)
mize (0.6.1)
- rack (3.2.4)
+ rack (3.2.5)
rake (13.3.1)
readline (0.0.4)
reline
diff --git a/lib/zorglub.rb b/lib/zorglub.rb
index 56ca6c4..69ab8c8 100644
--- a/lib/zorglub.rb
+++ b/lib/zorglub.rb
@@ -1,7 +1,7 @@
#! /usr/bin/env ruby
module Zorglub
- VERSION = '0.1.8'.freeze
+ VERSION = '0.1.9'.freeze
end
require 'zorglub/node'