Skip to content

Commit

Permalink
Merge pull request #44 from drashland/release-v1.1.3
Browse files Browse the repository at this point in the history
bump versions
  • Loading branch information
ebebbington authored Aug 3, 2020
2 parents 9cc78df + faa27af commit a7e8f4f
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 18 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,15 @@ As dmm only needs to read and write to your `deps.ts`, as well as requiring netw

*Install*
```
$ deno install --allow-net --allow-read --allow-write https://deno.land/x/dmm@v1.1.1/mod.ts
$ deno install --allow-net --allow-read --allow-write https://deno.land/x/dmm@v1.1.3/mod.ts
$ dmm ...
```

*Through the URL*

If you are using this method, be sure to use the latest version of dmm in the command below
```
$ deno run <permissions> https://deno.land/x/dmm@v1.1.1/mod.ts ...
$ deno run <permissions> https://deno.land/x/dmm@v1.1.3/mod.ts ...
```

In the examples below, dmm is installed and we will be using it that way to make the commands easier to read.
Expand Down Expand Up @@ -111,7 +111,7 @@ Now we want to check if any of our dependencies need updating, but we don't want
```
$ dmm check
...
drash can be updated from v1.0.0 to v1.1.1
drash can be updated from v1.0.0 to v1.2.1
fs can be updated from 0.53.0 to 0.63.0
...
```
Expand All @@ -123,15 +123,15 @@ Lets update our dependencies as some are out of date:
```
$ dmm update
...
drash was updated from v1.0.0 to v1.1.1
drash was updated from v1.0.0 to v1.2.1
fs was updated from 0.53.0 to 0.63.0
...
```

Now lets check the `deps.ts` file, and you will notice the versions have been modified:

```typescript
export { Drash } from "https://deno.land/x/drash@v1.1.1/mod.ts"; // was out of date
export { Drash } from "https://deno.land/x/drash@v1.2.1/mod.ts"; // was out of date

import * as fs from "https://deno.land/std@0.63.0/fs/mod.ts"; // was out of date

Expand All @@ -150,7 +150,7 @@ $ dmm --help
A module manager for Deno.
USAGE:
deno run --allow-read --allow-net [--allow-write] https://deno.land/x/dmm@v1.1.1/mod.ts [ARGS] [MODULES]
deno run --allow-read --allow-net [--allow-write] https://deno.land/x/dmm@v1.1.3/mod.ts [ARGS] [MODULES]
dmm [ARGS] [MODULES]
Expand All @@ -174,9 +174,9 @@ OPTIONS:
EXAMPLE USAGE:
Assume you are importing an out of date version of `fs` from `std`.
deno run --allow-net --allow-read https://deno.land/x/dmm@v1.1.1/mod.ts check fs
deno run --allow-net --allow-read --allow-write https://deno.land/x/dmm@v1.1.1/mod.ts update fs
deno run --allow-net https://deno.land/x/dmm@v1.1.1/mod.ts info http
deno run --allow-net --allow-read https://deno.land/x/dmm@v1.1.3/mod.ts check fs
deno run --allow-net --allow-read --allow-write https://deno.land/x/dmm@v1.1.3/mod.ts update fs
deno run --allow-net https://deno.land/x/dmm@v1.1.3/mod.ts info http
dmm info http
```
Expand Down
8 changes: 4 additions & 4 deletions src/options/help.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export const helpMessage: string = "\n" +
"\n" +
"USAGE:" +
"\n" +
" deno run --allow-read --allow-net [--allow-write] https://deno.land/x/dmm@v1.1.1/mod.ts [ARGS] [MODULES]" +
" deno run --allow-read --allow-net [--allow-write] https://deno.land/x/dmm@v1.1.3/mod.ts [ARGS] [MODULES]" +
"\n" +
"\n" +
" dmm [ARGS] [MODULES]" +
Expand Down Expand Up @@ -45,11 +45,11 @@ export const helpMessage: string = "\n" +
"\n" +
" Assume you are importing an out of date version of `fs` from `std`." +
"\n" +
" deno run --allow-net --allow-read https://deno.land/x/dmm@v1.1.1/mod.ts check fs" +
" deno run --allow-net --allow-read https://deno.land/x/dmm@v1.1.3/mod.ts check fs" +
"\n" +
" deno run --allow-net --allow-read --allow-write https://deno.land/x/dmm@v1.1.1/mod.ts update fs" +
" deno run --allow-net --allow-read --allow-write https://deno.land/x/dmm@v1.1.3/mod.ts update fs" +
"\n" +
" deno run --allow-net https://deno.land/x/dmm@v1.1.1/mod.ts info http" +
" deno run --allow-net https://deno.land/x/dmm@v1.1.3/mod.ts info http" +
"\n" +
" dmm info http" +
"\n";
2 changes: 1 addition & 1 deletion src/options/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
const version = "1.1.1";
const version = "1.1.3";
export const versionMessage = `dmm ${version}`;
8 changes: 4 additions & 4 deletions tests/help_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Deno.test({
"A module manager for Deno.\n" +
"\n" +
"USAGE:\n" +
" deno run --allow-read --allow-net [--allow-write] https://deno.land/x/dmm@v1.1.1/mod.ts [ARGS] [MODULES]\n" +
" deno run --allow-read --allow-net [--allow-write] https://deno.land/x/dmm@v1.1.3/mod.ts [ARGS] [MODULES]\n" +
"\n" +
" dmm [ARGS] [MODULES]\n" +
"\n" +
Expand Down Expand Up @@ -51,9 +51,9 @@ Deno.test({
"\n" +
"EXAMPLE USAGE:\n" +
" Assume you are importing an out of date version of `fs` from `std`.\n" +
" deno run --allow-net --allow-read https://deno.land/x/dmm@v1.1.1/mod.ts check fs\n" +
" deno run --allow-net --allow-read --allow-write https://deno.land/x/dmm@v1.1.1/mod.ts update fs\n" +
" deno run --allow-net https://deno.land/x/dmm@v1.1.1/mod.ts info http\n" +
" deno run --allow-net --allow-read https://deno.land/x/dmm@v1.1.3/mod.ts check fs\n" +
" deno run --allow-net --allow-read --allow-write https://deno.land/x/dmm@v1.1.3/mod.ts update fs\n" +
" deno run --allow-net https://deno.land/x/dmm@v1.1.3/mod.ts info http\n" +
" dmm info http\n" +
"\n",
);
Expand Down

0 comments on commit a7e8f4f

Please sign in to comment.