summaryrefslogtreecommitdiff
path: root/ReleaseNote.txt
diff options
context:
space:
mode:
authormakoto kuwata <kwa@kuwata-lab.com>2008-06-05 19:56:00 +0000
committermakoto kuwata <kwa@kuwata-lab.com>2008-06-05 19:56:00 +0000
commit718698c5c7beba5b76f1300192a1ec5e2c5231f9 (patch)
treebe3e8d5dc372f2bb69a98966d0e75f10d85f4e88 /ReleaseNote.txt
parent4954888904f8710a4fbce5b2032f47261a3d0c1c (diff)
downloaderubis-718698c5c7beba5b76f1300192a1ec5e2c5231f9.tar.gz
- [release] preparation for 2.6.1
Diffstat (limited to 'ReleaseNote.txt')
-rw-r--r--ReleaseNote.txt28
1 files changed, 26 insertions, 2 deletions
diff --git a/ReleaseNote.txt b/ReleaseNote.txt
index 36feb57..8dd48c1 100644
--- a/ReleaseNote.txt
+++ b/ReleaseNote.txt
@@ -1,3 +1,27 @@
+$ [ANN] Erubis 2.6.1 released - a fast and extensible eRuby
+
+I have released Erubis 2.6.1.
+http://www.kuwata-lab.com/erubis/
+http://www.kuwata-lab.com/support/
+Erubis is another eRuby implementation which is very fast and
+extensible than ERB and eruby.
+
+Enhancements from 2.6.0:
+
+ * Rails 2.1 support. (special thanks José Valim)
+
+
+If you have got any errors or problems, please tell me.
+
+--
+regards,
+makoto kuwata
+
+
+.#--------------------------------------------------------------------------------
+
+
+
$ [ANN] Erubis 2.6.0 released - a fast and extensible eRuby
I have released Erubis 2.6.0.
@@ -873,14 +897,14 @@ See doc/users-guide.html in archive for details.
$ eruby -x foo.eruby
_out = ''; (1..3).each do |i|
- _out << " i = "; _out << ( i ).to_s; _out << "¡Àn"
+ _out << " i = "; _out << ( i ).to_s; _out << "ï¼¼n"
end
$ eruby -x foo.eruby | ruby -wc
Syntax OK
$ eruby -s foo.eruby
_out = ''; (1..3).each do |i|
- _out << " i = "; _out << ( i ).to_s; _out << "¡Àn"
+ _out << " i = "; _out << ( i ).to_s; _out << "ï¼¼n"
end
_out
$ erubis -s foo.rhtml | ruby -wc