mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/psych/lib/psych.rb: bump version to 2.0.8
* ext/psych/psych.gemspec: ditto. * ext/psych/psych_emitter.c: ditto. * ext/psych/psych_parser.c: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48718 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
8a7690a5ed
commit
e599d8d197
5 changed files with 14 additions and 3 deletions
|
@ -1,3 +1,10 @@
|
|||
Fri Dec 5 22:43:04 2014 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
|
||||
|
||||
* ext/psych/lib/psych.rb: bump version to 2.0.8
|
||||
* ext/psych/psych.gemspec: ditto.
|
||||
* ext/psych/psych_emitter.c: ditto.
|
||||
* ext/psych/psych_parser.c: ditto.
|
||||
|
||||
Fri Dec 5 17:09:09 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* ext/socket/option.c (inet_ntop): link aliased inet_ntop in
|
||||
|
|
|
@ -217,7 +217,7 @@ require 'psych/class_loader'
|
|||
|
||||
module Psych
|
||||
# The version is Psych you're using
|
||||
VERSION = '2.0.7'
|
||||
VERSION = '2.0.8'
|
||||
|
||||
# The version of libyaml Psych is using
|
||||
LIBYAML_VERSION = Psych.libyaml_version.join '.'
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
|
||||
Gem::Specification.new do |s|
|
||||
s.name = "psych"
|
||||
s.version = "2.0.7"
|
||||
s.version = "2.0.8"
|
||||
|
||||
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
||||
s.require_paths = ["lib"]
|
||||
s.authors = ["Aaron Patterson"]
|
||||
s.date = "2014-12-01"
|
||||
s.date = "2014-12-05"
|
||||
s.description = "Psych is a YAML parser and emitter. Psych leverages libyaml[http://pyyaml.org/wiki/LibYAML]\nfor its YAML parsing and emitting capabilities. In addition to wrapping\nlibyaml, Psych also knows how to serialize and de-serialize most Ruby objects\nto and from the YAML format."
|
||||
s.email = ["aaron@tenderlovemaking.com"]
|
||||
s.extensions = ["ext/psych/extconf.rb"]
|
||||
|
|
|
@ -42,7 +42,9 @@ static const rb_data_type_t psych_emitter_type = {
|
|||
"Psych/emitter",
|
||||
{0, dealloc, 0,},
|
||||
0, 0,
|
||||
#ifdef RUBY_TYPED_FREE_IMMEDIATELY
|
||||
RUBY_TYPED_FREE_IMMEDIATELY,
|
||||
#endif
|
||||
};
|
||||
|
||||
static VALUE allocate(VALUE klass)
|
||||
|
|
|
@ -62,7 +62,9 @@ static const rb_data_type_t psych_parser_type = {
|
|||
"Psych/parser",
|
||||
{0, dealloc, 0,},
|
||||
0, 0,
|
||||
#ifdef RUBY_TYPED_FREE_IMMEDIATELY
|
||||
RUBY_TYPED_FREE_IMMEDIATELY,
|
||||
#endif
|
||||
};
|
||||
|
||||
static VALUE allocate(VALUE klass)
|
||||
|
|
Loading…
Reference in a new issue