summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTina Müller <cpan2@tinita.de>2020-04-19 12:57:08 +0200
committerTina Müller <cpan2@tinita.de>2020-04-19 13:15:10 +0200
commit72e2f75277ff88ad1fb8a81cf422df06bf371578 (patch)
tree008292e9de221ba972dd97fcb0351575ad4b048d
parent3694a4af7d2afe86b45e5bfd66ddf1fcba92ec50 (diff)
downloadlibyaml-git-72e2f75277ff88ad1fb8a81cf422df06bf371578.tar.gz
Changes for v0.2.4 release0.2.4release/0.2.4
-rw-r--r--.appveyor.yml2
-rw-r--r--CMakeLists.txt2
-rw-r--r--Changes9
-rw-r--r--Makefile.am2
-rw-r--r--announcement.msg25
-rw-r--r--configure.ac4
6 files changed, 21 insertions, 23 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index a9092a6..77d33ab 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -1,4 +1,4 @@
-version: 0.2.3.{build}
+version: 0.2.4.{build}
image:
- Visual Studio 2015
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 72a7f12..a9d7d93 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 3)
+set (YAML_VERSION_PATCH 4)
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 a2b40d1..ae6f436 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,12 @@
+0.2.4 2020-04-19
+
+ - https://github.com/yaml/libyaml/pull/143
+ Add packaging/docker-dist to Makefile.am
+
+ - https://github.com/yaml/libyaml/pull/174
+ Fix logic for document end before directive
+
+
0.2.3 2020-04-11
- https://github.com/yaml/libyaml/pull/130
diff --git a/Makefile.am b/Makefile.am
index fc7bc2e..95f2faa 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -36,7 +36,7 @@ tests/run-test-suite:
git worktree add $@ run-test-suite
packaging:
- git branch --track $@ origin/$@
+ -git branch --track $@ origin/$@
git worktree add --force $@ $@
docker-dist: packaging
diff --git a/announcement.msg b/announcement.msg
index ede0e02..8042163 100644
--- a/announcement.msg
+++ b/announcement.msg
@@ -1,13 +1,15 @@
From: Tina Müller <post@tinita.de>
To: yaml-core@lists.sourceforge.net
-Subject: [ANN] LibYAML-0.2.3: A new release
+Subject: [ANN] LibYAML-0.2.4: A new release
=========================
- Announcing LibYAML-0.2.3
+ Announcing LibYAML-0.2.4
=========================
A new release of LibYAML is now available:
-https://github.com/yaml/libyaml/tree/0.2.3
+https://github.com/yaml/libyaml/tree/0.2.4
+
+This fixes a bug introduced in the 0.2.3 release.
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,21 +18,8 @@ on the #yaml-dev and #libyaml IRC channels on irc.freenode.net.
Changes
=======
-- 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
+https://github.com/yaml/libyaml/pull/143 -- Add packaging/docker-dist to Makefile.am
+https://github.com/yaml/libyaml/pull/174 -- Fix logic for document end before directive
Resources
diff --git a/configure.ac b/configure.ac
index f64ba13..818fdac 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], 3)
+m4_define([YAML_PATCH], 4)
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], 7)
+m4_define([YAML_REVISION], 8)
m4_define([YAML_AGE], 0)
# Initialize autoconf & automake.