Skip to content

Commit

Permalink
upgrade std deps
Browse files Browse the repository at this point in the history
  • Loading branch information
manyuanrong committed Jun 19, 2019
1 parent 30a9e71 commit e9df93f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Chnage log

## 1.3.4

### upgrade testing std lib

Fix bug

## 1.3.3

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ More Useage see:

```ts
import { assertEquals, runTests, test } from "./deps.ts";
import { Query } from "https://deno.land/x/sql-builder@1.3.3/mod.ts";
import { Query } from "https://deno.land/x/sql-builder@1.3.4/mod.ts";

test(function testQueryInsert() {
const builder = new Query();
Expand Down
4 changes: 2 additions & 2 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export { assert, assertEquals } from "https://deno.land/x/testing/asserts.ts";
export { runTests, test } from "https://deno.land/x/testing/mod.ts";
export { assert, assertEquals } from "https://deno.land/std/testing/asserts.ts";
export { runTests, test } from "https://deno.land/std/testing/mod.ts";
export { replaceParams } from "./util.ts";

0 comments on commit e9df93f

Please sign in to comment.