]> andersk Git - libyaml.git/commitdiff
Bumped the version number and updated the announcement.
authorKirill Simonov <xi@resolvent.net>
Sun, 29 May 2011 05:52:36 +0000 (05:52 +0000)
committerKirill Simonov <xi@resolvent.net>
Sun, 29 May 2011 05:52:36 +0000 (05:52 +0000)
README
announcement.msg
configure.ac
win32/config.h

diff --git a/README b/README
index a762f97ce833b9b80dc18cdec23716d29ffe6cc3..d35ebcc99b4f8fc838bf4cce27f0144a25657206 100644 (file)
--- a/README
+++ b/README
@@ -1,7 +1,5 @@
 LibYAML - A C library for parsing and emitting YAML.
 
-The project is in an early stage of development.
-
 To build and install the library, run:
 $ ./configure
 $ make
index 39b273fe3a218c489787199568e6d921331f1c0f..8e9861eb5b22fcb1eb1b8af7d89ad1aa2f916b43 100644 (file)
@@ -1,23 +1,28 @@
-From: Kirill Simonov <xi@gamma.dn.ua>
+From: Kirill Simonov <xi@resolvent.net>
 To: yaml-core@lists.sourceforge.net
-Subject: LibYAML-0.1.3: A minor bugfix release
+Subject: LibYAML-0.1.4: A minor bugfix release
 
 This is a minor bugfix release of LibYAML, a YAML parser and emitter
-written in C.
+written in C:
 
-This release fixes non-standard structure initialization and
-a streaming-related issue.
+* Fixed a bug that prevented an empty mapping being used as a simple key
+  (thank to spitzak(at)rhythm(dot)com).
+* Fixed pointer overflow when calculating the position of a potential
+  simple key (thank to ppelletier(at)oblong(dot)com).
+* Fixed yaml.dll not exporting any symbols
+  (thank to pxn11432(at)nifty(dot)com).
+* Added pkg-config support (thank to rainwoodman(at)gmail(dot)com).
 
 LibYAML homepage:   http://pyyaml.org/wiki/LibYAML
-TAR.GZ package:     http://pyyaml.org/download/libyaml/yaml-0.1.3.tar.gz
+TAR.GZ package:     http://pyyaml.org/download/libyaml/yaml-0.1.4.tar.gz
 SVN repository:     http://svn.pyyaml.org/libyaml/branches/stable
 Bug tracker:        http://pyyaml.org/newticket?component=libyaml
 
-The library is functionally complete, but the documentation is scarce and the
-API is subject to change.  For more information, you may check the project
-homepage, the doxygen-generated documentation in the `doc` directory of the
-source distribution, and examples in the `tests` directory.
+The library is functionally complete, but the documentation is scarce
+and the API may change.  For more information, you may check the project
+homepage, the doxygen-generated documentation in the `doc` directory of
+the source distribution, and examples in the `tests` directory.
 
-LibYAML is written by Kirill Simonov <xi@resolvent.net>.  It is released
-under the MIT license.  See the file LICENSE for more details.
+LibYAML is written by Kirill Simonov <xi@resolvent.net> and released
+under the MIT license; see the file LICENSE for more details.
 
index f94a2a542bb87dcae9373820d9740385808066c1..f0fa397e0d98f913df8958a968abd8e1b4b7dd7a 100644 (file)
@@ -3,7 +3,7 @@
 # Define the package version numbers and the bug reporting link.
 m4_define([YAML_MAJOR], 0)
 m4_define([YAML_MINOR], 1)
-m4_define([YAML_PATCH], 3)
+m4_define([YAML_PATCH], 4)
 m4_define([YAML_BUGS], [http://pyyaml.org/newticket?component=libyaml])
 
 # Define the libtool version numbers; check the Autobook, Section 11.4.
@@ -19,7 +19,7 @@ m4_define([YAML_BUGS], [http://pyyaml.org/newticket?component=libyaml])
 #           YAML_AGE = 0
 m4_define([YAML_RELEASE], 0)
 m4_define([YAML_CURRENT], 2)
-m4_define([YAML_REVISION], 1)
+m4_define([YAML_REVISION], 2)
 m4_define([YAML_AGE], 0)
 
 # Initialize autoconf & automake.
index bea85c9c9c76fa11992b7f93628241b1e58c3f86..731b62d30cd9756e1d4f858e7c96b4924202a71a 100644 (file)
@@ -1,4 +1,4 @@
 #define YAML_VERSION_MAJOR 0
 #define YAML_VERSION_MINOR 1
-#define YAML_VERSION_PATCH 3
-#define YAML_VERSION_STRING "0.1.3"
+#define YAML_VERSION_PATCH 4
+#define YAML_VERSION_STRING "0.1.4"
This page took 0.097728 seconds and 5 git commands to generate.