diff --git a/Cargo.toml b/Cargo.toml index 5e860705..bc6bafc9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deno_mongo" -version = "0.10.0" +version = "0.11.0" authors = ["Enok <416828041@qq.com>"] edition = "2018" diff --git a/README.md b/README.md index ba0d4017..aadf5c56 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.10.1/mod.ts"; +import { MongoClient } from "https://deno.land/x/mongo@v0.11.0/mod.ts"; const client = new MongoClient(); client.connectWithUri("mongodb://localhost:27017"); diff --git a/mod.ts b/mod.ts index b48695f6..e2a2238e 100644 --- a/mod.ts +++ b/mod.ts @@ -6,7 +6,7 @@ export * from "./ts/database.ts"; export * from "./ts/result.ts"; export { ObjectId, UpdateOptions } from "./ts/types.ts"; export * from "./ts/util.ts"; -export const VERSION = "v0.10.0"; +export const VERSION = "v0.11.0"; export const RELEASE_URL = `https://github.com/manyuanrong/deno_mongo/releases/download/${VERSION}`;