summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTina Müller <cpan2@tinita.de>2020-04-10 21:52:09 +0200
committerTina Müller <cpan2@tinita.de>2020-04-11 19:08:22 +0200
commitbf5290289996338dcba9471b839013068d9e9ae8 (patch)
tree56c212da45f43ea160458796d4d8f57bad8dfc8e
parenta1dc7861f80f234b10e6445c1f1b1670baa12c52 (diff)
downloadlibyaml-git-bf5290289996338dcba9471b839013068d9e9ae8.tar.gz
Changes for v0.2.3 release0.2.3release/0.2.3
-rw-r--r--.appveyor.yml2
-rw-r--r--CMakeLists.txt2
-rw-r--r--Changes (renamed from CHANGES)47
-rw-r--r--License (renamed from LICENSE)2
-rw-r--r--Makefile.am2
-rw-r--r--ReadMe.md (renamed from README)32
-rw-r--r--announcement.msg40
-rw-r--r--configure.ac4
8 files changed, 92 insertions, 39 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index 8749615..a9092a6 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -1,4 +1,4 @@
-version: 0.2.2.{build}
+version: 0.2.3.{build}
image:
- Visual Studio 2015
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 7b0d35a..72a7f12 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -4,7 +4,7 @@ project (yaml C)
set (YAML_VERSION_MAJOR 0)
set (YAML_VERSION_MINOR 2)
-set (YAML_VERSION_PATCH 2)
+set (YAML_VERSION_PATCH 3)
set (YAML_VERSION_STRING "${YAML_VERSION_MAJOR}.${YAML_VERSION_MINOR}.${YAML_VERSION_PATCH}")
option(BUILD_SHARED_LIBS "Build libyaml as a shared library" OFF)
diff --git a/CHANGES b/Changes
index 9720a4b..a2b40d1 100644
--- a/CHANGES
+++ b/Changes
@@ -1,3 +1,50 @@
+0.2.3 2020-04-11
+
+ - https://github.com/yaml/libyaml/pull/130
+ Fixed typo.
+
+ - https://github.com/yaml/libyaml/pull/144
+ Fix typo in comment
+
+ - https://github.com/yaml/libyaml/pull/140
+ Use pointer to const for strings that aren't/shouldn't be modified
+
+ - https://github.com/yaml/libyaml/pull/128
+ Squash a couple of warnings in example-deconstructor-alt
+
+ - https://github.com/yaml/libyaml/pull/151
+ Fix spelling for error message
+
+ - https://github.com/yaml/libyaml/pull/161
+ Make appveyor config be a hidden file
+
+ - https://github.com/yaml/libyaml/pull/159
+ Add CHANGES file
+
+ - https://github.com/yaml/libyaml/pull/160
+ Always output document end before directive (YAML 1.2 compatibility)
+
+ - https://github.com/yaml/libyaml/pull/162
+ Output document end marker after open ended scalars
+
+ - https://github.com/yaml/libyaml/pull/157
+ change cmake target name from libOFF.a to libyaml.a
+
+ - https://github.com/yaml/libyaml/pull/155
+ include/yaml.h: fix comments
+
+ - https://github.com/yaml/libyaml/pull/169
+ Fixed missing token in example
+
+ - https://github.com/yaml/libyaml/pull/127
+ Avoid recursion in the document loader.
+
+ - https://github.com/yaml/libyaml/pull/172
+ Support %YAML 1.2 directives
+
+ - https://github.com/yaml/libyaml/pull/66
+ Change dllexport controlling macro to use _WIN32
+
0.2.2 2019-03-12
- https://github.com/yaml/libyaml/pull/95
diff --git a/LICENSE b/License
index e8f8805..3d82c28 100644
--- a/LICENSE
+++ b/License
@@ -1,4 +1,4 @@
-Copyright (c) 2017-2019 Ingy döt Net
+Copyright (c) 2017-2020 Ingy döt Net
Copyright (c) 2006-2016 Kirill Simonov
Permission is hereby granted, free of charge, to any person obtaining a copy of
diff --git a/Makefile.am b/Makefile.am
index 7ed57f6..b21549a 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -3,7 +3,7 @@
SUBDIRS = include src . tests
-EXTRA_DIST = CHANGES README LICENSE CMakeLists.txt doc/doxygen.cfg
+EXTRA_DIST = Changes ReadMe.md License CMakeLists.txt doc/doxygen.cfg
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = yaml-0.1.pc
diff --git a/README b/ReadMe.md
index 9e1ed90..2dfcc44 100644
--- a/README
+++ b/ReadMe.md
@@ -1,36 +1,40 @@
-LibYAML - A C library for parsing and emitting YAML.
+## LibYAML - A C library for parsing and emitting YAML.
To build and install the library, run:
-$ ./configure
-$ make
-# make install
+
+ $ ./configure
+ $ make
+ # make install
Required packages:
+
- gcc
- libtool
- make
If you checked the source code from the Git repository, run
-$ ./bootstrap
-$ ./configure
-$ make
-# make install
+
+ $ ./bootstrap
+ $ ./configure
+ $ make
+ # make install
Required packages:
+
- autoconf
- libtool
- make
-For more information, check the LibYAML homepage:
-'https://github.com/yaml/libyaml'.
+For more information, check the [LibYAML
+homepage](https://github.com/yaml/libyaml).
Discuss LibYAML with the maintainers in IRC #libyaml irc.freenode.net.
-You may also use the YAML-Core mailing list:
-'http://lists.sourceforge.net/lists/listinfo/yaml-core'.
+You may also use the [YAML-Core mailing
+list](http://lists.sourceforge.net/lists/listinfo/yaml-core).
-Submit bug reports and feature requests to the LibYAML bug tracker:
-'https://github.com/yaml/libyaml/issues/new'.
+Submit bug reports and feature requests to the [LibYAML bug
+tracker](https://github.com/yaml/libyaml/issues/new).
This project was developed for Python Software Foundation as a part of Google
Summer of Code under the mentorship of Clark Evans.
diff --git a/announcement.msg b/announcement.msg
index 0885f27..ede0e02 100644
--- a/announcement.msg
+++ b/announcement.msg
@@ -1,13 +1,13 @@
-From: Ingy döt Net <ingy@ingy.net>
+From: Tina Müller <post@tinita.de>
To: yaml-core@lists.sourceforge.net
-Subject: [ANN] LibYAML-0.2.2: A new release
+Subject: [ANN] LibYAML-0.2.3: A new release
=========================
- Announcing LibYAML-0.2.2
+ Announcing LibYAML-0.2.3
=========================
A new release of LibYAML is now available:
-https://github.com/yaml/libyaml/tree/0.2.2
+https://github.com/yaml/libyaml/tree/0.2.3
The LibYAML project is now maintained by the YAML community. Planning happens
on the #yaml-dev and #libyaml IRC channels on irc.freenode.net.
@@ -16,19 +16,21 @@ on the #yaml-dev and #libyaml IRC channels on irc.freenode.net.
Changes
=======
-* https://github.com/yaml/libyaml/pull/95 -- build: do not install config.h
-* https://github.com/yaml/libyaml/pull/97 -- appveyor.yml: fix Release build
-* https://github.com/yaml/libyaml/pull/103 -- Remove unused code in yaml_document_delete
-* https://github.com/yaml/libyaml/pull/104 -- Allow colons in plain scalars inside flow collections
-* https://github.com/yaml/libyaml/pull/109 -- Fix comparison in tests/run-emitter.c
-* https://github.com/yaml/libyaml/pull/117 -- Fix typo error
-* https://github.com/yaml/libyaml/pull/119 -- The closing single quote needs to be indented...
-* https://github.com/yaml/libyaml/pull/121 -- fix token name typos in comments
-* https://github.com/yaml/libyaml/pull/122 -- Revert removing of open_ended after top level plain scalar
-* https://github.com/yaml/libyaml/pull/125 -- Cherry-picks from PR 27
-* https://github.com/yaml/libyaml/pull/135 -- Windows/C89 compatibility
-* https://github.com/yaml/libyaml/pull/136 -- allow override of Windows static lib name
-
+- https://github.com/yaml/libyaml/pull/66 -- Change dllexport controlling macro to use _WIN32
+- https://github.com/yaml/libyaml/pull/127 -- Avoid recursion in the document loader.
+- https://github.com/yaml/libyaml/pull/128 -- Squash a couple of warnings in example-deconstructor-alt
+- https://github.com/yaml/libyaml/pull/130 -- Fixed typo.
+- https://github.com/yaml/libyaml/pull/140 -- Use pointer to const for strings that aren't/shouldn't be modified
+- https://github.com/yaml/libyaml/pull/144 -- Fix typo in comment
+- https://github.com/yaml/libyaml/pull/151 -- Fix spelling for error message
+- https://github.com/yaml/libyaml/pull/155 -- include/yaml.h: fix comments
+- https://github.com/yaml/libyaml/pull/157 -- change cmake target name from libOFF.a to libyaml.a
+- https://github.com/yaml/libyaml/pull/159 -- Add CHANGES file
+- https://github.com/yaml/libyaml/pull/160 -- Always output document end before directive (YAML 1.2 compatibility)
+- https://github.com/yaml/libyaml/pull/161 -- Make appveyor config be a hidden file
+- https://github.com/yaml/libyaml/pull/162 -- Output document end marker after open ended scalars
+- https://github.com/yaml/libyaml/pull/169 -- Fixed missing token in example
+- https://github.com/yaml/libyaml/pull/172 -- Support %YAML 1.2 directives
Resources
@@ -36,7 +38,7 @@ Resources
LibYAML IRC Channel: #libyaml on irc.freenode.net
LibYAML homepage: https://github.com/yaml/libyaml
-Source download: https://github.com/yaml/libyaml/archive/dist-0.2.2.zip
+Source download: https://github.com/yaml/libyaml/archive/dist-0.2.3.zip
GitHub repository: https://github.com/yaml/libyaml
Bug tracking: https://github.com/yaml/libyaml/issues
@@ -69,7 +71,7 @@ See: https://github.com/yaml/libyaml/pulls
Copyright
=========
-Copyright (c) 2017-2019 Ingy döt Net <ingy@ingy.net>
+Copyright (c) 2017-2020 Ingy döt Net <ingy@ingy.net>
Copyright (c) 2006-2016 Kirill Simonov <xi@resolvent.net>
The LibYAML module was written by Kirill Simonov.
diff --git a/configure.ac b/configure.ac
index 7e49151..f64ba13 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3,7 +3,7 @@
# Define the package version numbers and the bug reporting link.
m4_define([YAML_MAJOR], 0)
m4_define([YAML_MINOR], 2)
-m4_define([YAML_PATCH], 2)
+m4_define([YAML_PATCH], 3)
m4_define([YAML_BUGS], [https://github.com/yaml/libyaml/issues/new])
# Define the libtool version numbers; check the Autobook, Section 11.4.
@@ -19,7 +19,7 @@ m4_define([YAML_BUGS], [https://github.com/yaml/libyaml/issues/new])
# YAML_AGE = 0
m4_define([YAML_RELEASE], 0)
m4_define([YAML_CURRENT], 2)
-m4_define([YAML_REVISION], 6)
+m4_define([YAML_REVISION], 7)
m4_define([YAML_AGE], 0)
# Initialize autoconf & automake.