Skip to content

Commit

Permalink
Release 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dasch committed Jul 11, 2013
1 parent 6381eb1 commit 9bd64e0
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
### Unreleased

### Curly 0.10.0 (July 11, 2013)

* Allow comments in Curly templates using the `{{! ... }}` syntax:

```
{{! This is a comment }}
```

*Daniel Schierbeck*

### Curly 0.9.1 (June 20, 2013)

* Better error handling. If a presenter class cannot be found, we not raise a
Expand Down
6 changes: 4 additions & 2 deletions curly-templates.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Gem::Specification.new do |s|
s.rubygems_version = '1.3.5'

s.name = 'curly-templates'
s.version = '0.9.1'
s.date = '2013-06-20'
s.version = '0.10.0'
s.date = '2013-07-11'

s.summary = "Free your views!"
s.description = "A view layer for your Rails apps that separates structure and logic."
Expand Down Expand Up @@ -41,6 +41,7 @@ Gem::Specification.new do |s|
lib/curly/invalid_reference.rb
lib/curly/presenter.rb
lib/curly/railtie.rb
lib/curly/scanner.rb
lib/curly/template_handler.rb
lib/generators/curly/controller/controller_generator.rb
lib/generators/curly/controller/templates/presenter.rb.erb
Expand All @@ -49,6 +50,7 @@ Gem::Specification.new do |s|
spec/compiler_spec.rb
spec/generators/controller_generator_spec.rb
spec/presenter_spec.rb
spec/scanner_spec.rb
spec/spec_helper.rb
spec/template_handler_spec.rb
]
Expand Down
2 changes: 1 addition & 1 deletion lib/curly.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# See Curly::Presenter for more information on presenters.
#
module Curly
VERSION = "0.9.1"
VERSION = "0.10.0"

# Compiles a Curly template to Ruby code.
#
Expand Down

0 comments on commit 9bd64e0

Please sign in to comment.