[前][次][番号順一覧][スレッド一覧]

ruby-changes:36637

From: hsbt <ko1@a...>
Date: Fri, 5 Dec 2014 22:43:33 +0900 (JST)
Subject: [ruby-changes:36637] hsbt:r48718 (trunk): * ext/psych/lib/psych.rb: bump version to 2.0.8

hsbt	2014-12-05 22:43:13 +0900 (Fri, 05 Dec 2014)

  New Revision: 48718

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=48718

  Log:
    * 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.

  Modified files:
    trunk/ChangeLog
    trunk/ext/psych/lib/psych.rb
    trunk/ext/psych/psych.gemspec
    trunk/ext/psych/psych_emitter.c
    trunk/ext/psych/psych_parser.c
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 48717)
+++ ChangeLog	(revision 48718)
@@ -1,3 +1,10 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Fri Dec  5 22:43:04 2014  SHIBATA Hiroshi  <shibata.hiroshi@g...>
+
+	* 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@r...>
 
 	* ext/socket/option.c (inet_ntop): link aliased inet_ntop in
Index: ext/psych/psych_parser.c
===================================================================
--- ext/psych/psych_parser.c	(revision 48717)
+++ ext/psych/psych_parser.c	(revision 48718)
@@ -62,7 +62,9 @@ static const rb_data_type_t psych_parser https://github.com/ruby/ruby/blob/trunk/ext/psych/psych_parser.c#L62
     "Psych/parser",
     {0, dealloc, 0,},
     0, 0,
+#ifdef RUBY_TYPED_FREE_IMMEDIATELY
     RUBY_TYPED_FREE_IMMEDIATELY,
+#endif
 };
 
 static VALUE allocate(VALUE klass)
Index: ext/psych/psych_emitter.c
===================================================================
--- ext/psych/psych_emitter.c	(revision 48717)
+++ ext/psych/psych_emitter.c	(revision 48718)
@@ -42,7 +42,9 @@ static const rb_data_type_t psych_emitte https://github.com/ruby/ruby/blob/trunk/ext/psych/psych_emitter.c#L42
     "Psych/emitter",
     {0, dealloc, 0,},
     0, 0,
+#ifdef RUBY_TYPED_FREE_IMMEDIATELY
     RUBY_TYPED_FREE_IMMEDIATELY,
+#endif
 };
 
 static VALUE allocate(VALUE klass)
Index: ext/psych/lib/psych.rb
===================================================================
--- ext/psych/lib/psych.rb	(revision 48717)
+++ ext/psych/lib/psych.rb	(revision 48718)
@@ -217,7 +217,7 @@ require 'psych/class_loader' https://github.com/ruby/ruby/blob/trunk/ext/psych/lib/psych.rb#L217
 
 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 '.'
Index: ext/psych/psych.gemspec
===================================================================
--- ext/psych/psych.gemspec	(revision 48717)
+++ ext/psych/psych.gemspec	(revision 48718)
@@ -2,12 +2,12 @@ https://github.com/ruby/ruby/blob/trunk/ext/psych/psych.gemspec#L2
 
 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@t..."]
   s.extensions = ["ext/psych/extconf.rb"]

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]