Skip to content

Commit

Permalink
Bump version to v0.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacasonato committed Sep 14, 2020
1 parent e8075c8 commit 71f70aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ deno run --allow-net --allow-write --allow-read --allow-plugin --unstable xxx.ts
## Examples

```ts
import { MongoClient } from "https://deno.land/x/mongo@v0.11.2/mod.ts";
import { MongoClient } from "https://deno.land/x/mongo@v0.12.1/mod.ts";

const client = new MongoClient();
client.connectWithUri("mongodb://localhost:27017");
Expand Down
2 changes: 1 addition & 1 deletion mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export * from "./ts/result.ts";
export { ObjectId } from "./ts/types.ts";
export type { UpdateOptions } from "./ts/types.ts";
export * from "./ts/util.ts";
export const VERSION = "v0.11.2";
export const VERSION = "v0.12.1";
export const RELEASE_URL =
`https://github.com/manyuanrong/deno_mongo/releases/download/${VERSION}`;

Expand Down

0 comments on commit 71f70aa

Please sign in to comment.