Skip to content

Commit

Permalink
release v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
manyuanrong committed Apr 1, 2020
1 parent 465dc8a commit d2a0d88
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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.36.0
deno-version: 0.38.0

- name: Start MongoDB (MacOs)
if: matrix.kind == 'test' && startsWith(matrix.os, 'mac')
Expand Down
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.36.0-green.svg)](https://github.com/denoland/deno)
[![tag](https://img.shields.io/badge/deno-v0.38.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/mongo@v0.4.0/mod.ts";
import { init, MongoClient } from "https://deno.land/x/mongo@v0.5.0/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.4.0";
export const VERSION = "v0.5.0";
export const RELEASE_URL = `https://github.com/manyuanrong/deno_mongo/releases/download/${VERSION}`;

0 comments on commit d2a0d88

Please sign in to comment.