diff --git a/.prettierrc.yml b/.prettierrc.yml deleted file mode 100644 index 8ded5e0..0000000 --- a/.prettierrc.yml +++ /dev/null @@ -1,2 +0,0 @@ -singleQuote: true -semi: false diff --git a/.release b/.release index 0bf2a09..0493593 160000 --- a/.release +++ b/.release @@ -1 +1 @@ -Subproject commit 0bf2a098d4792848c2103dfce0f911e00a14709e +Subproject commit 0493593b975a438b3214ad30c49062af5bd57f55 diff --git a/CHANGELOG.md b/CHANGELOG.md index 5828738..77802d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/). ### Unreleased +### [1.0.2] - 2025-01-26 + +- prettier: move config into package.json + ### [1.0.1] - 2025-01-09 - dep(eslint): update to v9 @@ -13,3 +17,5 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/). - repackaged from haraka/Haraka [1.0.1]: https://github.com/haraka/haraka-plugin-spamassassin/releases/tag/v1.0.1 +[1.0.2]: https://github.com/haraka/haraka-plugin-spamassassin/releases/tag/v1.0.2 +[1.0.0]: https://github.com/haraka/haraka-plugin-spamassassin/releases/tag/1.0.0 diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index d01fd04..fe3f644 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -2,7 +2,7 @@ This handcrafted artisinal software is brought to you by: -|
msimerson (2) | +|
msimerson (3) | | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | this file is generated by [.release](https://github.com/msimerson/.release). diff --git a/package.json b/package.json index 752ec13..8719645 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "haraka-plugin-spamassassin", - "version": "1.0.1", + "version": "1.0.2", "description": "Haraka plugin that scans messages with SpamAssassin", "main": "index.js", "files": [ @@ -37,8 +37,12 @@ "haraka-utils": "^1.1.3" }, "devDependencies": { - "@haraka/eslint-config": "2.0.2", + "@haraka/eslint-config": "^2.0.2", "address-rfc2821": "^2.1.2", "haraka-test-fixtures": "1.3.8" + }, + "prettier": { + "singleQuote": true, + "semi": false } }