Skip to content

Commit 308ef86

Browse files
committed
bump version
1 parent 54181f3 commit 308ef86

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Overview
22

3-
## 0.1.2 - Not released
3+
## 0.1.2
44

55
### New Features
66

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,12 @@ def liquid_filters
5151
end
5252
```
5353

54+
You can render liquid templates from other template engines, eg. `erb`, `haml`, ...
55+
56+
```ruby
57+
= render 'shared/partial.liquid'
58+
```
59+
5460
### Filter
5561

5662
> Filters are simple methods that modify the output of numbers, strings, variables and objects. They are placed within an output tag `{{` `}}` and are separated with a pipe character `|`.

lib/liquid-rails/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Liquid
22
module Rails
3-
VERSION = '0.2.0'
3+
VERSION = '0.1.2'
44
end
55
end

0 commit comments

Comments
 (0)