Updated README.

This commit is contained in:
Ferdinand Majerech 2014-08-01 02:45:34 +02:00
parent 564dfdae80
commit aa97d9cc6a
2 changed files with 33 additions and 26 deletions

View file

@ -4,7 +4,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="Docutils 0.11: http://docutils.sourceforge.net/" />
<title>D:YAML 0.4</title>
<title>D:YAML 0.5</title>
<style type="text/css">
/*
@ -338,9 +338,11 @@ ul.auto-toc {
</style>
</head>
<body>
<div class="document" id="d-yaml-0-4">
<h1 class="title">D:YAML 0.4</h1>
<div class="document" id="d-yaml-0-5">
<h1 class="title">D:YAML 0.5</h1>
<p><strong>Note</strong>: D:YAML 0.5 brings some <strong>breaking changes</strong>. See the
<a class="reference external" href="https://github.com/kiith-sa/D-YAML/blob/master/CHANGES.rst">changelog</a>.</p>
<div class="section" id="introduction">
<h1>Introduction</h1>
<p>D:YAML is an open source YAML parser and emitter library for the D programming
@ -379,6 +381,7 @@ scalar tags.</li>
the exception of <tt class="docutils literal">tag:yaml.org,2002:yaml</tt>, which is used to represent YAML
code in YAML.</li>
<li>Remembers YAML style information between loading and dumping if possible.</li>
<li>Reuses input memory and uses slices to minimize memory allocations.</li>
<li>There is no support for recursive data structures.
There are no plans to implement this at the moment.</li>
</ul>

View file

@ -1,7 +1,10 @@
==========
D:YAML 0.4
D:YAML 0.5
==========
**Note**: D:YAML 0.5 brings some **breaking changes**. See the
`changelog <https://github.com/kiith-sa/D-YAML/blob/master/CHANGES.rst>`_.
------------
Introduction
------------
@ -46,6 +49,7 @@ Features
the exception of ``tag:yaml.org,2002:yaml``, which is used to represent YAML
code in YAML.
* Remembers YAML style information between loading and dumping if possible.
* Reuses input memory and uses slices to minimize memory allocations.
* There is no support for recursive data structures.
There are no plans to implement this at the moment.