Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
libyaml
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OpenVMS
libraries
libyaml
Commits
f7cc251cdad4
Commit
f7cc251cdad4
authored
5 years ago
by
Tina Müller
Browse files
Options
Downloads
Patches
Plain Diff
Changes for v0.2.5 release
parent
58900e0976a0
Branches
master
release/0.2.5
Branches containing commit
No related tags found
No related merge requests found
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
.appveyor.yml
+1
-1
1 addition, 1 deletion
.appveyor.yml
CMakeLists.txt
+1
-1
1 addition, 1 deletion
CMakeLists.txt
Changes
+26
-0
26 additions, 0 deletions
Changes
announcement.msg
+27
-8
27 additions, 8 deletions
announcement.msg
configure.ac
+2
-2
2 additions, 2 deletions
configure.ac
with
57 additions
and
12 deletions
.appveyor.yml
+
1
−
1
View file @
f7cc251c
version
:
0.2.
4
.{build}
version
:
0.2.
5
.{build}
image
:
-
Visual Studio
2015
...
...
This diff is collapsed.
Click to expand it.
CMakeLists.txt
+
1
−
1
View file @
f7cc251c
...
...
@@ -4,7 +4,7 @@
set
(
YAML_VERSION_MAJOR 0
)
set
(
YAML_VERSION_MINOR 2
)
set
(
YAML_VERSION_PATCH
4
)
set
(
YAML_VERSION_PATCH
5
)
set
(
YAML_VERSION_STRING
"
${
YAML_VERSION_MAJOR
}
.
${
YAML_VERSION_MINOR
}
.
${
YAML_VERSION_PATCH
}
"
)
option
(
BUILD_SHARED_LIBS
"Build libyaml as a shared library"
OFF
)
...
...
This diff is collapsed.
Click to expand it.
Changes
+
26
−
0
View file @
f7cc251c
0.2.5 2020-06-01
https://github.com/yaml/libyaml/pull/105
Allow question marks in plain scalars in flow collections
https://github.com/yaml/libyaml/pull/186
Emitter: Don't output trailing space for empty scalar nodes
https://github.com/yaml/libyaml/pull/185
Emitter: Output space after an alias mapping key
https://github.com/yaml/libyaml/pull/187
Add -h and --flow (on|off|keep) to run-*-test-suite
https://github.com/yaml/libyaml/pull/182
Remove unnecessary include and malloc
https://github.com/yaml/libyaml/pull/177
Add specific files back to .gitignore
https://github.com/yaml/libyaml/pull/181
Output error position in run-parser-test-suite.c
https://github.com/yaml/libyaml/pull/191
A couple patches to improve test suite support
0.2.4 2020-04-19
- https://github.com/yaml/libyaml/pull/143
...
...
This diff is collapsed.
Click to expand it.
announcement.msg
+
27
−
8
View file @
f7cc251c
From: Tina Müller <post@tinita.de>
To: yaml-core@lists.sourceforge.net
Subject: [ANN] LibYAML-0.2.
4
: A new release
Subject: [ANN] LibYAML-0.2.
5
: A new release
=========================
...
...
@@ -4,6 +4,6 @@
=========================
Announcing LibYAML-0.2.
4
Announcing LibYAML-0.2.
5
=========================
A new release of LibYAML is now available:
...
...
@@ -7,9 +7,7 @@
=========================
A new release of LibYAML is now available:
https://github.com/yaml/libyaml/tree/0.2.4
This fixes a bug introduced in the 0.2.3 release.
https://github.com/yaml/libyaml/tree/0.2.5
The LibYAML project is now maintained by the YAML community. Planning happens
on the #yaml-dev and #libyaml IRC channels on irc.freenode.net.
...
...
@@ -18,8 +16,30 @@
Changes
=======
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
https://github.com/yaml/libyaml/pull/187
Add -h and --flow (on|off|keep) to run-*-test-suite
https://github.com/yaml/libyaml/pull/182
Remove unnecessary include and malloc
https://github.com/yaml/libyaml/pull/177
Add specific files back to .gitignore
https://github.com/yaml/libyaml/pull/181
Output error position in run-parser-test-suite.c
https://github.com/yaml/libyaml/pull/105
Allow question marks in plain scalars in flow collections
https://github.com/yaml/libyaml/pull/186
Emitter: Don't output trailing space for empty scalar nodes
https://github.com/yaml/libyaml/pull/185
Emitter: Output space after an alias mapping key
https://github.com/yaml/libyaml/pull/191
A couple patches to improve test suite support
Resources
...
...
@@ -51,7 +71,6 @@
The following people are responsible for maintaining LibYAML:
* Ingy döt Net
* Tina Mueller
and many thanks to all who have contribributed!
See: https://github.com/yaml/libyaml/pulls
...
...
This diff is collapsed.
Click to expand it.
configure.ac
+
2
−
2
View file @
f7cc251c
...
...
@@ -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],
4
)
m4_define([YAML_PATCH],
5
)
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 @@
# YAML_AGE = 0
m4_define([YAML_RELEASE], 0)
m4_define([YAML_CURRENT], 2)
m4_define([YAML_REVISION],
8
)
m4_define([YAML_REVISION],
9
)
m4_define([YAML_AGE], 0)
# Initialize autoconf & automake.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment