From d2a0d88e1e1500e9c939b2918d399daeea9b8336 Mon Sep 17 00:00:00 2001 From: Enok <416828041@qq.com> Date: Wed, 1 Apr 2020 19:01:52 +0800 Subject: [PATCH] release v0.5.0 --- .github/workflows/ci.yml | 2 +- README.md | 4 ++-- mod.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 59bace21..0c178d88 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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') diff --git a/README.md b/README.md index a695318e..d1cf5b2b 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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(); diff --git a/mod.ts b/mod.ts index fda2506d..d2b86db9 100644 --- a/mod.ts +++ b/mod.ts @@ -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}`; \ No newline at end of file