risei 3.2.0 → 3.2.1
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/README.md +5 -1
- package/package.json +3 -4
package/README.md
CHANGED
|
@@ -46,7 +46,7 @@ And they have a summary bar at the bottom:
|
|
|
46
46
|
|
|
47
47
|
## Status
|
|
48
48
|
|
|
49
|
-
Risei's major features are now complete, but new enhancements or fixes may appear from time to time. The latest release, **3.2.
|
|
49
|
+
Risei's major features are now complete, but new enhancements or fixes may appear from time to time. The latest release, **3.2.1**, includes significant improvements and bug fixes, on top of the major improvements in releases **3.0.0** and **2.0.0**.
|
|
50
50
|
|
|
51
51
|
Check out the [full list of changes](#version-history).
|
|
52
52
|
|
|
@@ -219,6 +219,10 @@ If errors are thrown while testing, gold bars listing them appear at the bottom,
|
|
|
219
219
|
|
|
220
220
|
## Version history
|
|
221
221
|
|
|
222
|
+
- Release **3.2.1** (January, 2025) contains all the changes from **3.2.0**, **3.1.1**, and **3.1.0**, plus this change:
|
|
223
|
+
- Risei's mistaken nominal dependency on **npm** has been removed.
|
|
224
|
+
|
|
225
|
+
|
|
222
226
|
- Release **3.2.0** (January, 2025) contains all the changes from **3.1.1** and **3.1.0**, plus this change:
|
|
223
227
|
- Risei's self-dependency for its own self-testing has been moved back to the development-only scope.
|
|
224
228
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "risei",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.1",
|
|
4
4
|
"description": "Risei allows you to write unit tests as simple JavaScript objects, so it's easy and fast, with no drag on redesign.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"unit test",
|
|
@@ -41,8 +41,7 @@
|
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"chalk": "^5.0.0",
|
|
43
43
|
"fs": "^0.0.1-security",
|
|
44
|
-
"minimatch": "^9.0.1"
|
|
45
|
-
"npm": "^11.0.0"
|
|
44
|
+
"minimatch": "^9.0.1"
|
|
46
45
|
},
|
|
47
46
|
"devDependencies": {
|
|
48
47
|
"chai": "^4.3.6",
|
|
@@ -51,6 +50,6 @@
|
|
|
51
50
|
"fs": "^0.0.1-security",
|
|
52
51
|
"mocha": "^10.0.0",
|
|
53
52
|
"morgan": "~1.9.1",
|
|
54
|
-
"risei": "^3.
|
|
53
|
+
"risei": "^3.2.0"
|
|
55
54
|
}
|
|
56
55
|
}
|