tape-six 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +6 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -223,18 +223,20 @@ It is super easy to run tests:
223
223
  If you have a lot of tests, you can organize them using multiple files and directories.
224
224
  `tape-six` provides multiple test runners that can run them in different environments.
225
225
 
226
- ### Command-line utilities
226
+ ### Configuring test runners
227
227
 
228
- TBD
228
+ See [set-up tests](https://github.com/uhop/tape-six/wiki/Set-up-tests) for details.
229
229
 
230
- ### Setting up your project
230
+ ### Command-line utilities
231
231
 
232
- TBD
232
+ * [tape6](https://github.com/uhop/tape-six/wiki/Utility-%E2%80%90-tape6) — the main utility of the package to run tests in different environments.
233
+ * [tape6-server](https://github.com/uhop/tape-six/wiki/Utility-%E2%80%90-tape6-server) — a custom web server with a web application that helps running tests in browsers.
233
234
 
234
235
  ## Release notes
235
236
 
236
237
  The most recent releases:
237
238
 
239
+ * 1.0.1 *Technical release: added more links.*
238
240
  * 1.0.0 *The first official release.*
239
241
  * 0.12.3 *Technical release: exposed internal classes for external utilities.*
240
242
  * 0.12.2 *Fixed a minor serialization issue.*
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tape-six",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "TAP the test harness for the modern JavaScript (ES6).",
5
5
  "type": "module",
6
6
  "main": "index.js",