From 3f5b89057efe28f08beec4fcb6206ec15833de0e Mon Sep 17 00:00:00 2001 From: Enok <416828041@qq.com> Date: Wed, 5 Aug 2020 09:05:20 +0800 Subject: [PATCH] release v0.10.0 --- .github/workflows/ci.yml | 2 +- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- mod.ts | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1bfd749e..46ff53e7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: - name: Install Deno uses: denolib/setup-deno@master with: - deno-version: 1.2.0 + deno-version: 1.2.2 - name: Log versions run: | deno --version diff --git a/Cargo.lock b/Cargo.lock index 905bc5aa..dacb6313 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -215,7 +215,7 @@ dependencies = [ [[package]] name = "deno_mongo" -version = "0.1.0" +version = "0.10.0" dependencies = [ "bson", "deno_core", diff --git a/Cargo.toml b/Cargo.toml index 1226f7cb..5e860705 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deno_mongo" -version = "0.1.0" +version = "0.10.0" authors = ["Enok <416828041@qq.com>"] edition = "2018" diff --git a/README.md b/README.md index 360b9de0..f269411e 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.9.1/mod.ts"; +import { MongoClient } from "https://deno.land/x/mongo@v0.10.0/mod.ts"; const client = new MongoClient(); client.connectWithUri("mongodb://localhost:27017"); diff --git a/mod.ts b/mod.ts index 6e2dfa99..b48695f6 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.9.1"; +export const VERSION = "v0.10.0"; export const RELEASE_URL = `https://github.com/manyuanrong/deno_mongo/releases/download/${VERSION}`;