Skip to content

Commit

Permalink
dep(haraka-results): require at least 2.2 (#54)
Browse files Browse the repository at this point in the history
- due to redis dep
  • Loading branch information
msimerson authored Jun 8, 2023
1 parent 2afc480 commit c34fb41
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: CI

on: [ push ]
on: [ push, pull_request ]

env:
CI: true
Expand Down
2 changes: 1 addition & 1 deletion .release
Submodule .release updated 2 files
+1 −1 CHANGELOG.md
+6 −0 README.md
6 changes: 6 additions & 0 deletions Changes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
### Unreleased


### [1.3.0] - 2023-06-08

- dep(haraka-results): require at least 2.2 (due to redis dep)


### [1.2.1] - 2022-07-07

- ci: use windows & ubuntu workflows in haraka/.github
Expand Down Expand Up @@ -175,3 +180,4 @@
[1.1.0]: https://github.com/haraka/haraka-test-fixtures/releases/tag/1.1.0
[1.2.0]: https://github.com/haraka/test-fixtures/releases/tag/1.2.0
[1.2.1]: https://github.com/haraka/test-fixtures/releases/tag/1.2.1
[1.3.0]: https://github.com/haraka/test-fixtures/releases/tag/1.3.0
13 changes: 7 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "haraka-test-fixtures",
"license": "MIT",
"description": "Haraka Test Fixtures",
"version": "1.2.1",
"version": "1.3.0",
"repository": {
"type": "git",
"url": "[email protected]:haraka/test-fixtures.git"
Expand All @@ -16,21 +16,22 @@
"address-rfc2821": "*",
"haraka-config": "*",
"haraka-constants": "*",
"haraka-email-message": "^1.0.0",
"haraka-email-message": "~1.2",
"haraka-notes": "*",
"haraka-results": ">=2"
"haraka-results": "^2.2.0"
},
"devDependencies": {
"eslint": ">=8",
"eslint": "^8.0.0",
"eslint-plugin-haraka": "*",
"mocha": ">=9"
"mocha": "^9.0.0"
},
"bugs": {
"url": "https://github.com/haraka/test-fixtures/issues"
},
"scripts": {
"test": "npx mocha",
"lint": "npx eslint index.js lib test",
"lintfix": "npx eslint --fix index.js lib test"
"lintfix": "npx eslint --fix index.js lib test",
"versions": "npx dependency-version-checker check"
}
}

0 comments on commit c34fb41

Please sign in to comment.