Skip to content

Commit

Permalink
Update changelog, limit files included in package
Browse files Browse the repository at this point in the history
  • Loading branch information
matteodelabre committed Nov 22, 2019
1 parent 541c3fc commit 0004662
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,16 @@
<!-- vim: set spelllang=en : -->
# Changelog

## v0.6.0

### Breaking changes

* Node v6 reached end-of-life and is no longer supported.

### Fixed bugs

* Properly process CDATA and comment tags that sits astride two chunks.

## v0.5.0

### New features
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -12,7 +12,7 @@ Saxophone is inspired by SAX parsers such as [sax-js](https://github.com/isaacs/
Instead, it emits events for each tag or text node encountered as the parsing goes on, which makes it an online algorithm.
This means that Saxophone has a low memory footprint, can easily parse large documents, and can parse documents as they come from a stream.

The parser does not keep track of the document state while parsing and, in particular, does not check whether the document is well-formed or valid, making it super-fast (see [benchmarks](#benchmarks) below).
The parser does not keep track of the document state while parsing and, in particular, does not check whether the document is well-formed or valid, making it super-fast (see the [benchmark](#Benchmark) below).

This library is best suited when you need to extract simple data out of an XML document that you know is well-formed. The parser will not report precise errors in case of syntax problems. An example would be reading data from an API endpoint.

Expand Down
3 changes: 3 additions & 0 deletions package.json
Expand Up @@ -32,6 +32,9 @@
"sax",
"fast"
],
"files": [
"lib/**/*"
],
"author": {
"name": "Mattéo Delabre",
"email": "contact@matteodelabre.me",
Expand Down

0 comments on commit 0004662

Please sign in to comment.