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
01a29b8f7b34
Commit
01a29b8f7b34
authored
14 years ago
by
Kirill Simonov
Browse files
Options
Downloads
Patches
Plain Diff
Bumped the version number and updated the announcement.
parent
1067eed912bb
No related branches found
No related tags found
No related merge requests found
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
README
+0
-2
0 additions, 2 deletions
README
announcement.msg
+17
-12
17 additions, 12 deletions
announcement.msg
configure.ac
+2
-2
2 additions, 2 deletions
configure.ac
win32/config.h
+2
-2
2 additions, 2 deletions
win32/config.h
with
21 additions
and
18 deletions
README
+
0
−
2
View file @
01a29b8f
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
...
...
This diff is collapsed.
Click to expand it.
announcement.msg
+
17
−
12
View file @
01a29b8f
From: Kirill Simonov <xi@
gamma.dn.ua
>
From: Kirill Simonov <xi@
resolvent.net
>
To: yaml-core@lists.sourceforge.net
...
...
@@ -2,4 +2,4 @@
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
...
...
@@ -4,4 +4,4 @@
This is a minor bugfix release of LibYAML, a YAML parser and emitter
written in C
.
written in C
:
...
...
@@ -7,5 +7,10 @@
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
...
...
@@ -10,6 +15,6 @@
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
...
...
@@ -13,8 +18,8 @@
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.
...
...
@@ -20,4 +25,4 @@
LibYAML is written by Kirill Simonov <xi@resolvent.net>
. It is
released
under the MIT license
. S
ee the file LICENSE for more details.
LibYAML is written by Kirill Simonov <xi@resolvent.net>
and
released
under the MIT license
; s
ee the file LICENSE for more details.
This diff is collapsed.
Click to expand it.
configure.ac
+
2
−
2
View file @
01a29b8f
...
...
@@ -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 @@
# 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.
...
...
This diff is collapsed.
Click to expand it.
win32/config.h
+
2
−
2
View file @
01a29b8f
#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 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