summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2011-06-09 10:23:52 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2011-06-09 10:23:52 -0700
commitef6db4f2be11308b09193ac6f59057ab23aebf1a (patch)
tree61ef492c9818124a3ce5567ceeb2ff7b61d17cc6
parentb199105ae8331d07d8036b2c3d41602699155d4c (diff)
downloadpsych-ef6db4f2be11308b09193ac6f59057ab23aebf1a.tar.gz
bumping version and copying changelog from ruby corev1.2.0
-rw-r--r--CHANGELOG.rdoc29
-rw-r--r--lib/psych.rb2
2 files changed, 28 insertions, 3 deletions
diff --git a/CHANGELOG.rdoc b/CHANGELOG.rdoc
index 3d82d6f..8d92124 100644
--- a/CHANGELOG.rdoc
+++ b/CHANGELOG.rdoc
@@ -1,3 +1,28 @@
-=== 1.0.0 / 2009-09-26
+Thu Jun 9 10:57:03 2011 Aaron Patterson <aaron@tenderlovemaking.com>
-* Birthday!
+ * ext/psych/lib/psych/visitors/to_ruby.rb: Hash subclasses can be read
+ from YAML files.
+ * ext/psych/lib/psych/visitors/yaml_tree.rb: Hash subclasses can be
+ dumped to YAML files.
+ * test/psych/test_hash.rb: corresponding test.
+
+Thu Jun 9 09:18:51 2011 Aaron Patterson <aaron@tenderlovemaking.com>
+
+ * ext/psych/lib/psych/visitors/to_ruby.rb: Ruby modules can be loaded
+ from YAML files.
+ * ext/psych/lib/psych/visitors/yaml_tree.rb: Ruby modules can be
+ dumped to YAML files.
+ * test/psych/test_class.rb: corresponding test.
+
+Thu Jun 9 09:05:04 2011 Aaron Patterson <aaron@tenderlovemaking.com>
+
+ * ext/psych/lib/psych/visitors/to_ruby.rb: Ruby classes can be loaded
+ from YAML files.
+ * ext/psych/lib/psych/visitors/yaml_tree.rb: Ruby classes can be
+ dumped to YAML files.
+ * test/psych/test_class.rb: corresponding test.
+
+Mon Jun 6 09:39:43 2011 Aaron Patterson <aaron@tenderlovemaking.com>
+
+ * ext/psych/parser.c (parse): release event objects to plug memory
+ leak. Thanks Mark J. Titorenko!
diff --git a/lib/psych.rb b/lib/psych.rb
index e399dcc..31d73c1 100644
--- a/lib/psych.rb
+++ b/lib/psych.rb
@@ -90,7 +90,7 @@ require 'psych/json'
module Psych
# The version is Psych you're using
- VERSION = '1.1.1'
+ VERSION = '1.2.0'
# The version of libyaml Psych is using
LIBYAML_VERSION = Psych.libyaml_version.join '.'