Skip to content

Commit

Permalink
v0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
manyuanrong committed Apr 4, 2020
1 parent 43ace01 commit a13e392
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Install Deno
uses: denolib/setup-deno@master
with:
deno-version: 0.38.0
deno-version: 0.39.0

- name: Start MongoDB (MacOs)
if: matrix.kind == 'test' && startsWith(matrix.os, 'mac')
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ crate-type = ["cdylib"]
mongodb = "0.9.2"
bson = "0.14.1"
serde_json = "1.0.50"
serde = "1.0.105"
serde = "1.0.106"
futures = "0.3.4"
deno_core = "0.38.0"
deno_core = "0.39.0"
lazy_static = "1.4.0"
# deno = "0.29.0"
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[![Build Status](https://github.com/manyuanrong/deno_mongo/workflows/ci/badge.svg?branch=master)](https://github.com/manyuanrong/deno_mongo/actions)
[![license](https://img.shields.io/github/license/manyuanrong/deno_mongo.svg)](https://github.com/manyuanrong/deno_mongo)
[![downloads](https://img.shields.io/github/downloads/manyuanrong/deno_mongo/total)](https://github.com/manyuanrong/deno_mongo)
[![tag](https://img.shields.io/badge/deno-v0.38.0-green.svg)](https://github.com/denoland/deno)
[![tag](https://img.shields.io/badge/deno-v0.39.0-green.svg)](https://github.com/denoland/deno)

## Links

Expand All @@ -17,7 +17,7 @@
## Examples

```ts
import { init, MongoClient } from "https://deno.land/x/[email protected].1/mod.ts";
import { init, MongoClient } from "https://deno.land/x/[email protected].2/mod.ts";

// Initialize the plugin
await init();
Expand Down
2 changes: 1 addition & 1 deletion mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ 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.5.1";
export const VERSION = "v0.5.2";
export const RELEASE_URL = `https://github.com/manyuanrong/deno_mongo/releases/download/${VERSION}`;

0 comments on commit a13e392

Please sign in to comment.