From 574973df4ea7efe4a753e1d9e7cb41c3cc12bce6 Mon Sep 17 00:00:00 2001 From: Enok <416828041@qq.com> Date: Tue, 19 May 2020 21:53:02 +0800 Subject: [PATCH] pre release v0.7.0 --- README.md | 2 +- mod.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6ba03d94..fb3ce25e 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.6.0/mod.ts"; +import { MongoClient } from "https://deno.land/x/mongo@v0.7.0/mod.ts"; const client = new MongoClient(); client.connectWithUri("mongodb://localhost:27017"); diff --git a/mod.ts b/mod.ts index 74a8eeaf..429009c5 100644 --- a/mod.ts +++ b/mod.ts @@ -6,7 +6,7 @@ export * from "./ts/database.ts"; export * from "./ts/result.ts"; export { ObjectId } from "./ts/types.ts"; export * from "./ts/util.ts"; -export const VERSION = "v0.6.0"; +export const VERSION = "v0.7.0"; export const RELEASE_URL = `https://github.com/manyuanrong/deno_mongo/releases/download/${VERSION}`;