Skip to content

Commit d57f26d

Browse files
committed
bump to version v0.2.1
1 parent c2c9e8d commit d57f26d

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

CHANGELOG

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
v0.2.1
2+
------
3+
4+
* option :ignore_errors; default => true
5+
* fix string parsing
6+
7+
18
v0.2.0
29
------
310

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# vi: fenc=utf-8:expandtab:ts=2:sw=2:sts=2
33
#
44
# @author: Petr Kovar <pejuko@gmail.com>
5-
$KCODE='UTF8'
5+
$KCODE='UTF8' if RUBY_VERSION < "1.9"
66

77
require 'rake/gempackagetask'
88
require 'rake/testtask'

coderay_bash.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ spec = Gem::Specification.new do |s|
1313
s.email = "pejuko@gmail.com"
1414
s.authors = ["Petr Kovar"]
1515
s.name = 'coderay_bash'
16-
s.version = '0.2.0'
16+
s.version = '0.2.1'
1717
s.date = Time.now.strftime("%Y-%m-%d")
1818
s.add_dependency('coderay', '< 1.0')
1919
s.require_path = 'lib'

test/test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
# vi: fenc=utf-8:expandtab:ts=2:sw=2:sts=2
33

4-
$KCODE='UTF8'
4+
$KCODE='UTF8' if RUBY_VERSION < "1.9"
55

66
require 'test/unit'
77
require 'rubygems'

0 commit comments

Comments
 (0)