redis-smq 7.0.3 → 7.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 7.0.4 (2022-07-14)
4
+
5
+ * Fix dev dependencies (e42d072)
6
+ * Update installation info (12c6170)
7
+ * Make redis-smq-common as a peer dependency (ade08af)
8
+
3
9
  ## 7.0.3 (2022-07-13)
4
10
 
5
11
  * Fix consuming-messages/test00012 (4c9dfb8)
package/README.md CHANGED
@@ -76,7 +76,7 @@ things more simple to use and removing any confusions that can occur while worki
76
76
  ## Installation
77
77
 
78
78
  ```text
79
- npm install redis-smq --save
79
+ npm install redis-smq-common redis-smq --save
80
80
  ```
81
81
 
82
82
  Considerations:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "redis-smq",
3
- "version": "7.0.3",
3
+ "version": "7.0.4",
4
4
  "description": "A simple high-performance Redis message queue for Node.js.",
5
5
  "author": "Weyoss <weyoss@protonmail.com>",
6
6
  "license": "MIT",
@@ -36,9 +36,11 @@
36
36
  "bluebird": "3.7.2",
37
37
  "cron-parser": "3.5.0",
38
38
  "lodash": "4.17.21",
39
- "redis-smq-common": "1.0.1",
40
39
  "uuid": "8.3.2"
41
40
  },
41
+ "peerDependencies": {
42
+ "redis-smq-common": "^1.0.1"
43
+ },
42
44
  "devDependencies": {
43
45
  "@types/bluebird": "3.5.36",
44
46
  "@types/debug": "4.1.7",
@@ -57,6 +59,7 @@
57
59
  "jest": "27.2.4",
58
60
  "lint-staged": "11.1.2",
59
61
  "prettier": "2.4.1",
62
+ "redis-smq-common": "^1.0.1",
60
63
  "supertest": "6.1.6",
61
64
  "ts-jest": "27.0.5",
62
65
  "ts-node": "10.2.1",