Skip to content

Releases: pietercolpaert/hardf

0.5.0

26 Jun 07:50
8dbfb31
Compare
Choose a tag to compare

What's Changed

  • TriGParser: distinguish empty entities from no-entity being read by @zozlak in #42

Internal

  • A few changes concerning CI
  • phpunit.yml: extend workflow to run for all supported PHP versions (7.1 - 8.3) by @k00ni in #43

Full Changelog: 0.4.0...0.5.0

0.4.0

27 Feb 14:49
142f38d
Compare
Choose a tag to compare

What's Changed

  • README.md: document TriGParser options (closes #35) by @zozlak in #40
  • N3Lexer: allow typeIRI tokens in line mode (closes #32) by @zozlak in #41

Full Changelog: 0.3.1...0.4.0

0.3.1

01 Oct 12:11
8bebaa0
Compare
Choose a tag to compare

Bugfix release

Fix for #33 (Util::getLiteralValue() fails for multiline values).

0.3

11 Mar 17:19
9230173
Compare
Choose a tag to compare
0.3

Feature release

Added TriGParserIterator to improve triple handling after parsing data. For more information see #36 (Thanks @zozlak)

Example:

$parser = new TrigParserIterator();
$parser->parse(...);
foreach ($parser as $quad) {
    // ...do something...
}

0.2.0

17 Dec 09:52
5280127
Compare
Choose a tag to compare

Maintenance release

Highlights:

  • bumped minimum PHP version to 7.1 (#29)
  • added support for PHP 7.4 and 8.0 (#30)
  • README patch from @gplanchat (#27)
  • improved code styling and inline documentation a lot
  • many refinements mostly in test environment and tooling (added PHPStan etc.)

0.1.3

02 Oct 07:48
Compare
Choose a tag to compare

Releasing a new version: updated documentation, updated composer.json and small bug fixes

With K00ni fixes

27 Nov 21:57
3fa0c84
Compare
Choose a tag to compare

0.1.1 unicode

20 Apr 08:40
Compare
Choose a tag to compare

Unicode bugfix #7

0.1

17 Apr 20:06
Compare
Choose a tag to compare
0.1

First version released of hardf with write support for N-Triples, N-Quads, TriG and Turtle, with parse support for N3, N-Triples, N-Quads, TriG and Turtle. Supports both streaming as all in one operations. Has an order of 2 magnitude performance gain over EasyRDF.