diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..648652b --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,27 @@ +# Changelog + +## 1.8.0 + +custom filter functions + +## 1.7.0 + +carry values between filter runs + +## 1.6.0 + +filter groups + +## 1.5.0 + +filter over multiple fields + +## 1.4.0 + +function to filter arrays of objects recursively + +## 1.1.0 - 1.3.0 (lost changelog) + +## 1.0.0 + +initial release diff --git a/package.json b/package.json index 2693b01..68cdaa3 100644 --- a/package.json +++ b/package.json @@ -1,17 +1,22 @@ { "name": "@sapphirecode/utilities", - "version": "1.8.5", + "version": "1.8.4", "main": "index.js", - "author": "Timo Hocker ", + "author": { + "name": "Timo Hocker", + "email": "timo@scode.ovh" + }, + "bugs": "https://redmine.scode.ovh/projects/utilities", "license": "MIT", "keywords": [ "utilities", "regex", - "json" + "json", + "filters" ], "repository": { "type": "git", - "url": "git@git.scode.ovh:timo/utilities" + "url": "https://git.scode.ovh:timo/utilities.git" }, "description": "small utility functions to make much needed features easier to work with", "devDependencies": { @@ -36,4 +41,4 @@ "engines": { "node": ">=10" } -} \ No newline at end of file +}