summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/psych.rb4
-rw-r--r--psych.gemspec4
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/psych.rb b/lib/psych.rb
index 15371cd..ecef46c 100644
--- a/lib/psych.rb
+++ b/lib/psych.rb
@@ -224,7 +224,7 @@ require 'psych/class_loader'
module Psych
# The version is Psych you're using
- VERSION = '2.1.0'
+ VERSION = '2.1.1'
# The version of libyaml Psych is using
LIBYAML_VERSION = Psych.libyaml_version.join '.'
@@ -469,7 +469,7 @@ module Psych
###
# Load the document contained in +filename+. Returns the yaml contained in
# +filename+ as a Ruby object, or if the file is empty, it returns
- # the specified default return value, which defaults to an empty Hash
+ # the specified default return value, which defaults to an empty Hash
def self.load_file filename, fallback = false
File.open(filename, 'r:bom|utf-8') { |f|
self.load f, filename, FALLBACK.new(fallback)
diff --git a/psych.gemspec b/psych.gemspec
index 9e1ba5b..fcefe80 100644
--- a/psych.gemspec
+++ b/psych.gemspec
@@ -2,10 +2,10 @@
Gem::Specification.new do |s|
s.name = "psych"
- s.version = "2.1.0"
+ s.version = "2.1.1"
s.authors = ["Aaron Patterson", "SHIBATA Hiroshi"]
s.email = ["aaron@tenderlovemaking.com", "hsbt@ruby-lang.org"]
- s.date = "2016-06-24"
+ s.date = "2016-09-07"
s.summary = "Psych is a YAML parser and emitter"
s.description = <<-DESCRIPTION
Psych is a YAML parser and emitter. Psych leverages libyaml[http://pyyaml.org/wiki/LibYAML]