Skip to content

Commit 2c891fc

Browse files
committed
Changes for v0.2.5 release
1 parent d12ce2a commit 2c891fc

File tree

5 files changed

+57
-12
lines changed

5 files changed

+57
-12
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 0.2.4.{build}
1+
version: 0.2.5.{build}
22

33
image:
44
- Visual Studio 2015

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ project (yaml C)
44

55
set (YAML_VERSION_MAJOR 0)
66
set (YAML_VERSION_MINOR 2)
7-
set (YAML_VERSION_PATCH 4)
7+
set (YAML_VERSION_PATCH 5)
88
set (YAML_VERSION_STRING "${YAML_VERSION_MAJOR}.${YAML_VERSION_MINOR}.${YAML_VERSION_PATCH}")
99

1010
option(BUILD_SHARED_LIBS "Build libyaml as a shared library" OFF)

Changes

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
0.2.5 2020-06-01
2+
3+
https://github.com/yaml/libyaml/pull/105
4+
Allow question marks in plain scalars in flow collections
5+
6+
https://github.com/yaml/libyaml/pull/186
7+
Emitter: Don't output trailing space for empty scalar nodes
8+
9+
https://github.com/yaml/libyaml/pull/185
10+
Emitter: Output space after an alias mapping key
11+
12+
https://github.com/yaml/libyaml/pull/187
13+
Add -h and --flow (on|off|keep) to run-*-test-suite
14+
15+
https://github.com/yaml/libyaml/pull/182
16+
Remove unnecessary include and malloc
17+
18+
https://github.com/yaml/libyaml/pull/177
19+
Add specific files back to .gitignore
20+
21+
https://github.com/yaml/libyaml/pull/181
22+
Output error position in run-parser-test-suite.c
23+
24+
https://github.com/yaml/libyaml/pull/191
25+
A couple patches to improve test suite support
26+
127
0.2.4 2020-04-19
228

329
- https://github.com/yaml/libyaml/pull/143

announcement.msg

Lines changed: 27 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
From: Tina Müller <post@tinita.de>
22
To: yaml-core@lists.sourceforge.net
3-
Subject: [ANN] LibYAML-0.2.4: A new release
3+
Subject: [ANN] LibYAML-0.2.5: A new release
44

55
=========================
6-
Announcing LibYAML-0.2.4
6+
Announcing LibYAML-0.2.5
77
=========================
88

99
A new release of LibYAML is now available:
10-
https://github.com/yaml/libyaml/tree/0.2.4
11-
12-
This fixes a bug introduced in the 0.2.3 release.
10+
https://github.com/yaml/libyaml/tree/0.2.5
1311

1412
The LibYAML project is now maintained by the YAML community. Planning happens
1513
on the #yaml-dev and #libyaml IRC channels on irc.freenode.net.
@@ -18,8 +16,30 @@ on the #yaml-dev and #libyaml IRC channels on irc.freenode.net.
1816
Changes
1917
=======
2018

21-
https://github.com/yaml/libyaml/pull/143 -- Add packaging/docker-dist to Makefile.am
22-
https://github.com/yaml/libyaml/pull/174 -- Fix logic for document end before directive
19+
20+
https://github.com/yaml/libyaml/pull/187
21+
Add -h and --flow (on|off|keep) to run-*-test-suite
22+
23+
https://github.com/yaml/libyaml/pull/182
24+
Remove unnecessary include and malloc
25+
26+
https://github.com/yaml/libyaml/pull/177
27+
Add specific files back to .gitignore
28+
29+
https://github.com/yaml/libyaml/pull/181
30+
Output error position in run-parser-test-suite.c
31+
32+
https://github.com/yaml/libyaml/pull/105
33+
Allow question marks in plain scalars in flow collections
34+
35+
https://github.com/yaml/libyaml/pull/186
36+
Emitter: Don't output trailing space for empty scalar nodes
37+
38+
https://github.com/yaml/libyaml/pull/185
39+
Emitter: Output space after an alias mapping key
40+
41+
https://github.com/yaml/libyaml/pull/191
42+
A couple patches to improve test suite support
2343

2444

2545
Resources
@@ -51,7 +71,6 @@ Maintainers
5171
The following people are responsible for maintaining LibYAML:
5272

5373
* Ingy döt Net
54-
* Tina Mueller
5574

5675
and many thanks to all who have contribributed!
5776
See: https://github.com/yaml/libyaml/pulls

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Define the package version numbers and the bug reporting link.
44
m4_define([YAML_MAJOR], 0)
55
m4_define([YAML_MINOR], 2)
6-
m4_define([YAML_PATCH], 4)
6+
m4_define([YAML_PATCH], 5)
77
m4_define([YAML_BUGS], [https://github.com/yaml/libyaml/issues/new])
88

99
# 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])
1919
# YAML_AGE = 0
2020
m4_define([YAML_RELEASE], 0)
2121
m4_define([YAML_CURRENT], 2)
22-
m4_define([YAML_REVISION], 8)
22+
m4_define([YAML_REVISION], 9)
2323
m4_define([YAML_AGE], 0)
2424

2525
# Initialize autoconf & automake.

0 commit comments

Comments
 (0)