diff options
-rw-r--r-- | Changes.textile | 6 | ||||
-rw-r--r-- | lib/coderay/helpers/file_type.rb | 1 | ||||
-rw-r--r-- | lib/coderay/version.rb | 2 |
3 files changed, 8 insertions, 1 deletions
diff --git a/Changes.textile b/Changes.textile index efe48a2..9135f67 100644 --- a/Changes.textile +++ b/Changes.textile @@ -4,6 +4,12 @@ p=. _This files lists all changes in the CodeRay library since the 0.9.8 release {{toc}} +h2. Changes in 1.0.2 + +Fixes: + +* .erb files are recognized as ERB. + h2. Changes in 1.0.1 New: diff --git a/lib/coderay/helpers/file_type.rb b/lib/coderay/helpers/file_type.rb index 7b9939c..cbe0bfc 100644 --- a/lib/coderay/helpers/file_type.rb +++ b/lib/coderay/helpers/file_type.rb @@ -84,6 +84,7 @@ module CodeRay 'css' => :css, 'diff' => :diff, 'dpr' => :delphi, + 'erb' => :erb, 'gemspec' => :ruby, 'groovy' => :groovy, 'gvy' => :groovy, diff --git a/lib/coderay/version.rb b/lib/coderay/version.rb index b6cc192..e6b8386 100644 --- a/lib/coderay/version.rb +++ b/lib/coderay/version.rb @@ -1,3 +1,3 @@ module CodeRay - VERSION = '1.0.1' + VERSION = '1.0.2' end |