diff --git a/CHANGELOG.md b/CHANGELOG.md index 652bf15..8e02076 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog All notable changes to this project will be documented in this file. + +## [v1.6.0](https://github.com/rubensworks/jest-rdf/compare/v1.5.0...v1.6.0) - 2020-09-15 + +### Added +* [Update matchers to support nested quads](https://github.com/rubensworks/jest-rdf/commit/899e8e2493172e7393b84d126bedfceeef61795d) + +### Changed +* [Update to RDF/JS typings 4.x.x](https://github.com/rubensworks/jest-rdf/commit/c02c151ec8c364540b7f78cbc48ded7cdb11a191) + ## [v1.5.0](https://github.com/rubensworks/jest-rdf/compare/v1.4.0...v1.5.0) - 2020-01-24 diff --git a/package.json b/package.json index 1494aaf..c83e5a8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "jest-rdf", - "version": "1.5.0", + "version": "1.6.0", "description": "Jest utilities for RDF(JS)", "keywords": [ "jest", @@ -48,7 +48,9 @@ "typescript": "^3.0.1" }, "jest": { - "setupFilesAfterEnv": [ "./index.js" ], + "setupFilesAfterEnv": [ + "./index.js" + ], "transform": { "^.+\\.ts$": "ts-jest" },