aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/CHANGELOG3
-rw-r--r--actionpack/lib/action_pack/version.rb2
2 files changed, 4 insertions, 1 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 993ccbd122..83a7187e40 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,7 +1,10 @@
+*1.10.1* (October 19th, 2005)
+
* Update error trace templates [Nicholas Seckar]
* Stop showing generated routing code in application traces [Nicholas Seckar]
+
*1.10.0* (October 16th, 2005)
* Make string-keys locals assigns optional. Add documentation describing depreciated state [skaes@web.de]
diff --git a/actionpack/lib/action_pack/version.rb b/actionpack/lib/action_pack/version.rb
index fd7daa8b97..3bc83cd75a 100644
--- a/actionpack/lib/action_pack/version.rb
+++ b/actionpack/lib/action_pack/version.rb
@@ -2,7 +2,7 @@ module ActionPack
module Version #:nodoc:
MAJOR = 1
MINOR = 10
- TINY = 0
+ TINY = 1
STRING = [MAJOR, MINOR, TINY].join('.')
end