Skip to content

Commit

Permalink
bump version for 0.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
brianmario committed Feb 8, 2011
1 parent 3dda478 commit 58d9326
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## 0.2.0 (February 8th, 2011)
* fixed a couple of compilation warnings on 1.9.3
* moved to rspec2
* remove hard-conversion to utf-8 to preserve the string's original encoding
* moved to rake-compiler, Bundler
* pass through incompletely escaped data on unescaping
* added tilde to escape_{uri,url}specs (It's a difference between CGI.escape and URI.escape)
* escape_uri and escape_url now match their Ruby counterparts
** escape_uri is used where URI.escape is, and escape_url is used where CGI.escape is used.
* performance and memory usage optimizations

## 0.1.9 (October 15th, 2010)
* add a flag as an optional 2nd parameter to EscapeUtils.escape_html to disable/enable the escaping of the '/' character. Defaults to the new flag EscapeUtils.html_secure

Expand Down
2 changes: 1 addition & 1 deletion escape_utils.gemspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require './lib/escape_utils/version'
require './lib/escape_utils/version' unless defined? EscapeUtils::VERSION

Gem::Specification.new do |s|
s.name = %q{escape_utils}
Expand Down
2 changes: 1 addition & 1 deletion lib/escape_utils.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# encoding: utf-8
require 'escape_utils/escape_utils'
require 'escape_utils/version'
require 'escape_utils/version' unless defined? EscapeUtils::VERSION

EscapeUtils.send(:extend, EscapeUtils)
module EscapeUtils
Expand Down
2 changes: 1 addition & 1 deletion lib/escape_utils/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module EscapeUtils
VERSION = "0.1.9"
VERSION = "0.2.0"
end

0 comments on commit 58d9326

Please sign in to comment.