Skip to content

Commit

Permalink
Release v1.1.2 (#39)
Browse files Browse the repository at this point in the history
- deps: add ^ to versions
- doc: add CONTRIBUTORS
  • Loading branch information
msimerson authored Apr 14, 2024
1 parent 52c2618 commit e379bec
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .release
Submodule .release updated 5 files
+3 −0 CHANGELOG.md
+8 −0 base.sh
+77 −0 contributors.js
+36 −5 start.sh
+8 −7 submit.sh
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).

### Unreleased

### [1.1.2] - 2024-04-11

- deps: add ^ to required versions
- doc: add CONTRIBUTORS

### [1.1.1] - 2024-04-08

- dep: eslint-plugin-haraka -> @haraka/eslint-config
Expand Down Expand Up @@ -44,5 +49,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).

[1.0.6]: https://github.com/haraka/haraka-plugin-attachment/releases/tag/v1.0.6
[1.0.7]: https://github.com/haraka/haraka-plugin-attachment/releases/tag/v1.0.7
[1.1.0]: https://github.com/haraka/haraka-plugin-attachment/releases/tag/v1.1.0
[1.1.0]: https://github.com/haraka/haraka-plugin-attachment/releases/tag/1.1.0
[1.1.1]: https://github.com/haraka/haraka-plugin-attachment/releases/tag/v1.1.1
[1.1.2]: https://github.com/haraka/haraka-plugin-attachment/releases/tag/v1.1.2
8 changes: 8 additions & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Contributors

This handcrafted artisinal software is brought to you by:

| <img height="80" src="https://avatars.githubusercontent.com/u/261635?v=4"><br><a href="https://github.com/msimerson">msimerson</a> (<a href="https://github.com/haraka/haraka-plugin-attachment/commits?author=msimerson">31</a>) | <img height="80" src="https://avatars.githubusercontent.com/u/203240?v=4"><br><a href="https://github.com/lnedry">lnedry</a> (<a href="https://github.com/haraka/haraka-plugin-attachment/commits?author=lnedry">3</a>) | <img height="80" src="https://avatars.githubusercontent.com/u/19733683?v=4"><br><a href="https://github.com/snyk-bot">snyk-bot</a> (<a href="https://github.com/haraka/haraka-plugin-attachment/commits?author=snyk-bot">2</a>) |
| :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |

<sub>this file is maintained by [.release](https://github.com/msimerson/.release)</sub>
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "haraka-plugin-attachment",
"license": "MIT",
"description": "A message attachment scanning plugin for Haraka",
"version": "1.1.1",
"version": "1.1.2",
"homepage": "https://github.com/haraka/haraka-plugin-attachment",
"repository": {
"type": "git",
Expand All @@ -15,28 +15,28 @@
"config"
],
"engines": {
"node": ">= 12"
"node": ">= 16"
},
"scripts": {
"format": "npm run prettier:fix && npm run lint:fix",
"lint": "npx eslint@^8 *.js test",
"lint:fix": "npx eslint@^8 *.js test --fix",
"prettier": "npx prettier . --check",
"prettier:fix": "npx prettier . --write --log-level=warn",
"test": "npx mocha@10",
"test": "npx mocha@10 --exit",
"versions": "npx @msimerson/dependency-version-checker check",
"versions:fix": "npx @msimerson/dependency-version-checker update && npm run prettier:fix"
},
"dependencies": {
"tmp": "0.2.3",
"haraka-constants": "1.0.6",
"haraka-utils": "1.1.2"
"tmp": "^0.2.3",
"haraka-constants": "^1.0.6",
"haraka-utils": "^1.1.2"
},
"optionalDependencies": {},
"devDependencies": {
"@haraka/eslint-config": "1.1.3",
"haraka-config": "1.1.0",
"haraka-test-fixtures": "1.3.5"
"@haraka/eslint-config": "^1.1.3",
"haraka-config": "^1.1.0",
"haraka-test-fixtures": "^1.3.6"
},
"bugs": {
"url": "https://github.com/haraka/haraka-plugin-attachment/issues"
Expand Down

0 comments on commit e379bec

Please sign in to comment.