Skip to content

Commit 7d835c3

Browse files
committed
Release 0.11.0
1 parent 5519a43 commit 7d835c3

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
### Unreleased
22

3+
### Curly 0.11.0 (July 31, 2013)
4+
35
* Make Curly raise an exception when a reference or comment is not closed.
46

57
*Daniel Schierbeck*

curly-templates.gemspec

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ Gem::Specification.new do |s|
44
s.rubygems_version = '1.3.5'
55

66
s.name = 'curly-templates'
7-
s.version = '0.10.2'
8-
s.date = '2013-07-11'
7+
s.version = '0.11.0'
8+
s.date = '2013-07-31'
99

1010
s.summary = "Free your views!"
1111
s.description = "A view layer for your Rails apps that separates structure and logic."
@@ -42,6 +42,7 @@ Gem::Specification.new do |s|
4242
lib/curly/presenter.rb
4343
lib/curly/railtie.rb
4444
lib/curly/scanner.rb
45+
lib/curly/syntax_error.rb
4546
lib/curly/template_handler.rb
4647
lib/generators/curly/controller/controller_generator.rb
4748
lib/generators/curly/controller/templates/presenter.rb.erb
@@ -52,6 +53,7 @@ Gem::Specification.new do |s|
5253
spec/presenter_spec.rb
5354
spec/scanner_spec.rb
5455
spec/spec_helper.rb
56+
spec/syntax_error_spec.rb
5557
spec/template_handler_spec.rb
5658
]
5759
# = MANIFEST =

lib/curly.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# See Curly::Presenter for more information on presenters.
2727
#
2828
module Curly
29-
VERSION = "0.10.2"
29+
VERSION = "0.11.0"
3030

3131
# Compiles a Curly template to Ruby code.
3232
#

0 commit comments

Comments
 (0)