Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
* bump: [email protected]

* ci: go to CircleCI

* bump: [email protected], [email protected]

* Update config.yml
  • Loading branch information
keroxp authored Sep 13, 2019
1 parent cfd86d9 commit 80d5132
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 15 deletions.
3 changes: 1 addition & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ jobs:
- checkout
- run:
name: Install Deno
command: |
curl -fsSL https://deno.land/x/install/install.sh | bash -s -- v0.13.0
command: curl -fsSL https://deno.land/x/install/install.sh | sh -s -- v0.17.0
- run:
name: Run Tests
command: |
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
[![CircleCI](https://circleci.com/gh/keroxp/deno-redis.svg?style=svg)](https://circleci.com/gh/keroxp/deno-redis)
![https://img.shields.io/github/tag/keroxp/deno-redis.svg](https://img.shields.io/github/tag/keroxp/deno-redis.svg)
[![license](https://img.shields.io/github/license/keroxp/deno-redis.svg)](https://github.com/keroxp/deno-redis)
[![tag](https://img.shields.io/badge/deno__std-v0.12.0-green.svg)](https://github.com/denoland/deno_std)
[![tag](https://img.shields.io/badge/deno-v0.12.0-green.svg)](https://github.com/denoland/deno)
[![tag](https://img.shields.io/badge/deno__std-v0.17.0-green.svg)](https://github.com/denoland/deno_std)
[![tag](https://img.shields.io/badge/deno-v0.17.0-green.svg)](https://github.com/denoland/deno)

An experimental implementation of redis client for deno

Expand Down
2 changes: 1 addition & 1 deletion io.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
BufReader,
BufWriter
} from "https://deno.land/std@v0.12.0/io/bufio.ts";
} from "https://deno.land/std@v0.17.0/io/bufio.ts";
import Buffer = Deno.Buffer;
import { ErrorReplyError } from "./errors.ts";

Expand Down
2 changes: 1 addition & 1 deletion pipeline.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
BufReader,
BufWriter
} from "https://deno.land/std@v0.12.0/io/bufio.ts";
} from "https://deno.land/std@v0.17.0/io/bufio.ts";
import { createRequest, readReply, RedisRawReply } from "./io.ts";
import { ErrorReplyError } from "./errors.ts";
import { create, Redis } from "./redis.ts";
Expand Down
4 changes: 2 additions & 2 deletions pipeline_test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { test } from "https://deno.land/std@v0.12.0/testing/mod.ts";
import { assertEquals } from "https://deno.land/std@v0.12.0/testing/asserts.ts";
import { test } from "https://deno.land/std@v0.17.0/testing/mod.ts";
import { assertEquals } from "https://deno.land/std@v0.17.0/testing/asserts.ts";
import { connect } from "./redis.ts";

const addr = "127.0.0.1:6379";
Expand Down
2 changes: 1 addition & 1 deletion pubsub.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
BufReader,
BufWriter
} from "https://deno.land/std@v0.12.0/io/bufio.ts";
} from "https://deno.land/std@v0.17.0/io/bufio.ts";
import { createRequest, readArrayReply, sendCommand } from "./io.ts";

export type RedisSubscription = {
Expand Down
4 changes: 2 additions & 2 deletions pubsub_test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { test } from "https://deno.land/std@v0.12.0/testing/mod.ts";
import { assertEquals } from "https://deno.land/std@v0.12.0/testing/asserts.ts";
import { test } from "https://deno.land/std@v0.17.0/testing/mod.ts";
import { assertEquals } from "https://deno.land/std@v0.17.0/testing/asserts.ts";
import { connect } from "./redis.ts";
import { RedisPubSubMessage } from "./pubsub.ts";

Expand Down
2 changes: 1 addition & 1 deletion redis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ type Closer = Deno.Closer;
import {
BufReader,
BufWriter
} from "https://deno.land/std@v0.12.0/io/bufio.ts";
} from "https://deno.land/std@v0.17.0/io/bufio.ts";
import { ConnectionClosedError } from "./errors.ts";
import { psubscribe, RedisSubscription, subscribe } from "./pubsub.ts";
import { RedisRawReply, sendCommand } from "./io.ts";
Expand Down
4 changes: 2 additions & 2 deletions redis_test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { connect } from "./redis.ts";
import { test } from "https://deno.land/std@v0.12.0/testing/mod.ts";
import { assertEquals } from "https://deno.land/std@v0.12.0/testing/asserts.ts";
import { test } from "https://deno.land/std@v0.17.0/testing/mod.ts";
import { assertEquals } from "https://deno.land/std@v0.17.0/testing/asserts.ts";
// can be substituted with env variable
const addr = "127.0.0.1:6379";

Expand Down
2 changes: 1 addition & 1 deletion test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import "./redis_test.ts";
import "./pubsub_test.ts";
import "./pipeline_test.ts";
import "https://deno.land/std@v0.12.0/testing/main.ts";
import "https://deno.land/std@v0.17.0/testing/main.ts";

0 comments on commit 80d5132

Please sign in to comment.