Skip to content

Commit d2a0d88

Browse files
committed
release v0.5.0
1 parent 465dc8a commit d2a0d88

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Install Deno
3131
uses: denolib/setup-deno@master
3232
with:
33-
deno-version: 0.36.0
33+
deno-version: 0.38.0
3434

3535
- name: Start MongoDB (MacOs)
3636
if: matrix.kind == 'test' && startsWith(matrix.os, 'mac')

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![Build Status](https://github.com/manyuanrong/deno_mongo/workflows/ci/badge.svg?branch=master)](https://github.com/manyuanrong/deno_mongo/actions)
77
[![license](https://img.shields.io/github/license/manyuanrong/deno_mongo.svg)](https://github.com/manyuanrong/deno_mongo)
88
[![downloads](https://img.shields.io/github/downloads/manyuanrong/deno_mongo/total)](https://github.com/manyuanrong/deno_mongo)
9-
[![tag](https://img.shields.io/badge/deno-v0.36.0-green.svg)](https://github.com/denoland/deno)
9+
[![tag](https://img.shields.io/badge/deno-v0.38.0-green.svg)](https://github.com/denoland/deno)
1010

1111
## Links
1212

@@ -17,7 +17,7 @@
1717
## Examples
1818

1919
```ts
20-
import { init, MongoClient } from "https://deno.land/x/mongo@v0.4.0/mod.ts";
20+
import { init, MongoClient } from "https://deno.land/x/mongo@v0.5.0/mod.ts";
2121

2222
// Initialize the plugin
2323
await init();

mod.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ export * from "./ts/database.ts";
44
export * from "./ts/result.ts";
55
export { ObjectId } from "./ts/types.ts";
66
export * from "./ts/util.ts";
7-
export const VERSION = "v0.4.0";
7+
export const VERSION = "v0.5.0";
88
export const RELEASE_URL = `https://github.com/manyuanrong/deno_mongo/releases/download/${VERSION}`;

0 commit comments

Comments
 (0)