Skip to content

Commit d2312ae

Browse files
committed
Bump version
1 parent de81f6b commit d2312ae

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ Note that in this repo we run the tests with the ``--allow-read`` because we use
357357

358358
## Create a new GitHub release every time you publish on npm.
359359

360-
Just after running ``$ npm publish`` got to your GitHub repo pages -> release -> create new release ( or draft new release ) and tag version enter ``v1.0.0`` matching the current version in your ``package.json`` file.
360+
Just after running ``$ npm publish`` got to your GitHub repo pages -> release -> create new release ( or draft new release ) and tag version enter ``v1.0.1`` matching the current version in your ``package.json`` file.
361361

362362
## (Optional) Publish your module on deno.land
363363

@@ -414,11 +414,11 @@ import { Cat } from "my-dummy-npm-and-deno-module"
414414
And on deno with:
415415

416416
```typescript
417-
importCat } from "https://deno.land/x/[email protected].0/mod.ts";
417+
importCat } from "https://deno.land/x/[email protected].1/mod.ts";
418418
```
419419
or if you haven't published on [deno.land/x](https://deno.land/x):
420420
```typescript
421-
importCat } from "https://raw.githubusercontent.com/garronej/my_dummy_npm_and_deno_module/v1.0.0/deno_dist/mod.ts";
421+
importCat } from "https://raw.githubusercontent.com/garronej/my_dummy_npm_and_deno_module/v1.0.1/deno_dist/mod.ts";
422422
```
423423

424424
On top of that this module can now be used as a dependency in other modules that uses ``denoify``.

deno_dist/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ Note that in this repo we run the tests with the ``--allow-read`` because we use
357357

358358
## Create a new GitHub release every time you publish on npm.
359359

360-
Just after running ``$ npm publish`` got to your GitHub repo pages -> release -> create new release ( or draft new release ) and tag version enter ``v1.0.0`` matching the current version in your ``package.json`` file.
360+
Just after running ``$ npm publish`` got to your GitHub repo pages -> release -> create new release ( or draft new release ) and tag version enter ``v1.0.1`` matching the current version in your ``package.json`` file.
361361

362362
## (Optional) Publish your module on deno.land
363363

@@ -414,11 +414,11 @@ import { Cat } from "my-dummy-npm-and-deno-module"
414414
And on deno with:
415415

416416
```typescript
417-
importCat } from "https://deno.land/x/[email protected].0/mod.ts";
417+
importCat } from "https://deno.land/x/[email protected].1/mod.ts";
418418
```
419419
or if you haven't published on [deno.land/x](https://deno.land/x):
420420
```typescript
421-
importCat } from "https://raw.githubusercontent.com/garronej/my_dummy_npm_and_deno_module/v1.0.0/deno_dist/mod.ts";
421+
importCat } from "https://raw.githubusercontent.com/garronej/my_dummy_npm_and_deno_module/v1.0.1/deno_dist/mod.ts";
422422
```
423423

424424
On top of that this module can now be used as a dependency in other modules that uses ``denoify``.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "my-dummy-npm-and-deno-module",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/garronej/my_dummy_npm_and_deno_module.git"

0 commit comments

Comments
 (0)