Skip to content

Commit

Permalink
release v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
manyuanrong committed Aug 5, 2020
1 parent f9aa782 commit 3f5b890
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion 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"

Expand Down
2 changes: 1 addition & 1 deletion README.md
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.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");
Expand Down
2 changes: 1 addition & 1 deletion mod.ts
Expand Up @@ -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}`;

Expand Down

0 comments on commit 3f5b890

Please sign in to comment.