From 71f70aa79e2fb129527ab0725107c0f1196c0dc8 Mon Sep 17 00:00:00 2001 From: Luca Casonato Date: Mon, 14 Sep 2020 15:46:48 +0200 Subject: [PATCH] Bump version to v0.12.1 --- README.md | 2 +- mod.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e606e2c8..60fd7a0a 100644 --- a/README.md +++ b/README.md @@ -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"); diff --git a/mod.ts b/mod.ts index efd91bfd..e25950db 100644 --- a/mod.ts +++ b/mod.ts @@ -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}`;