Skip to content

Commit

Permalink
1.0.2 fix incorrect unit test link in README
Browse files Browse the repository at this point in the history
  • Loading branch information
smcatala committed Feb 15, 2017
1 parent 0be3f24 commit 76cc72a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const key = pbkdf2('secret passphrase')
```
the files of this example are available [in this repository](./spec/example).

view a [live version of this example in the browser console](https://cdn.rawgit.com/ZenyWay/pbkdf2-sha512/v1.0.0/spec/example/index.html)
view a [live version of this example in the browser console](https://cdn.rawgit.com/ZenyWay/pbkdf2-sha512/v1.0.2/spec/example/index.html)
in the browser console,
or by cloning this repository and running the following commands from a terminal:
```bash
Expand All @@ -40,7 +40,7 @@ npm run example
coded in `Typescript 2`, transpiled to `ES5`.

for a detailed specification of the API,
[run the unit tests in your browser](https://cdn.rawgit.com/ZenyWay/pbkdf2-opgp-key/v1.0.0/spec/web/index.html).
[run the unit tests in your browser](https://cdn.rawgit.com/ZenyWay/pbkdf2-sha512/v1.0.2/spec/web/index.html).

# <a name="contributing"></a> CONTRIBUTING
see the [contribution guidelines](./CONTRIBUTING.md)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pbkdf2sha512",
"version": "1.0.1",
"version": "1.0.2",
"description": "node crypto's async pbkdf2 promisified and with sane defaults",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion spec/example/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</head>
<body>
<h2>
<pre>`pbkdf2-sha512` example</pre>
<pre>`pbkdf2sha512` example</pre>
</h2>
<pre>please open the console</pre>
<script src="https://wzrd.in/bundle/pbkdf2" type="text/javascript"></script>
Expand Down
4 changes: 2 additions & 2 deletions spec/web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
</head>
<body>
<h2>
<pre>`pbkdf2-sha512` specs</pre>
<pre>`pbkdf2sha512` specs</pre>
</h2>
<p>this page runs the `pbkdf2-sha512` unit tests in your browser</p>
<p>this page runs the `pbkdf2sha512` unit tests in your browser</p>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jasmine/2.5.2/jasmine.min.js" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jasmine/2.5.2/jasmine-html.min.js" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jasmine/2.5.2/boot.min.js" type="text/javascript"></script>
Expand Down

0 comments on commit 76cc72a

Please sign in to comment.