Merge pull request #201 from arthurnn/adding_version_file

create version.rb file, and bump version
This commit is contained in:
Florian Weingarten
2013-06-14 05:45:48 -07:00
4 changed files with 18 additions and 1 deletions

View File

@@ -1,5 +1,13 @@
# Liquid Version History
## 2.6.0 / Master branch
* Add reverse filter
* Add utf-8 support
* Cache for partials
* Avoid warnings in Ruby 1.9.3
* Use of BigDecimal on filters to have better precision
## 2.5.0 / 2013-03-06
* Prevent Object methods from being called on drops

View File

@@ -45,6 +45,7 @@ module Liquid
VariableParser = /\[[^\]]+\]|#{VariableSegment}+\??/o
end
require "liquid/version"
require 'liquid/drop'
require 'liquid/extensions'
require 'liquid/errors'

4
lib/liquid/version.rb Normal file
View File

@@ -0,0 +1,4 @@
# encoding: utf-8
module Liquid
VERSION = "2.6.0"
end

View File

@@ -1,8 +1,12 @@
# encoding: utf-8
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require "liquid/version"
Gem::Specification.new do |s|
s.name = "liquid"
s.version = "2.5.0"
s.version = Liquid::VERSION
s.platform = Gem::Platform::RUBY
s.summary = "A secure, non-evaling end user template engine with aesthetic markup."
s.authors = ["Tobias Luetke"]