diff --git a/index.html b/index.html index 496db1f5..57a526de 100644 --- a/index.html +++ b/index.html @@ -93,7 +93,7 @@

- Current Version: 0.5.3 + Current Version: 0.5.4

@@ -672,6 +672,13 @@

JavaScript Templates

Change Log

+

+ 0.5.4
+ Added a Jammit.package! helper function, for use in Rake tasks. + Fixed a request_uri deprecation warning for Rails 3. + Bugfix to allow template_extension to include periods. +

+

0.5.3
You can now embed WOFF-formatted fonts. diff --git a/jammit.gemspec b/jammit.gemspec index 91d44eb0..d76581b3 100644 --- a/jammit.gemspec +++ b/jammit.gemspec @@ -1,7 +1,7 @@ Gem::Specification.new do |s| s.name = 'jammit' - s.version = '0.5.3' # Keep version in sync with jammit.rb - s.date = '2010-9-15' + s.version = '0.5.4' # Keep version in sync with jammit.rb + s.date = '2010-11-8' s.homepage = "http://documentcloud.github.com/jammit/" s.summary = "Industrial Strength Asset Packaging for Rails" diff --git a/lib/jammit.rb b/lib/jammit.rb index d85ed45b..760b059c 100644 --- a/lib/jammit.rb +++ b/lib/jammit.rb @@ -4,7 +4,7 @@ # to all of the configuration options. module Jammit - VERSION = "0.5.3" + VERSION = "0.5.4" ROOT = File.expand_path(File.dirname(__FILE__) + '/..')