From 7560e2b385811810881f8e16010cff7ea879d4e3 Mon Sep 17 00:00:00 2001 From: asos-craigmorten Date: Sat, 19 Sep 2020 12:48:17 +0100 Subject: [PATCH] feat: 1.1.1 --- .github/CHANGELOG.md | 4 ++++ .github/workflows/publish-egg.yml | 2 +- README.md | 6 +++--- docs/index.html | 6 +++--- egg.json | 2 +- examples/basic/README.md | 2 +- examples/basic/index.ts | 2 +- version.ts | 2 +- 8 files changed, 15 insertions(+), 11 deletions(-) diff --git a/.github/CHANGELOG.md b/.github/CHANGELOG.md index e64f056..c41f6e6 100644 --- a/.github/CHANGELOG.md +++ b/.github/CHANGELOG.md @@ -1,5 +1,9 @@ # ChangeLog +## [1.1.1] - 19-09-2020 + +- chore: upgrade to eggs@0.2.2 in CI + ## [1.1.0] - 19-09-2020 - feat: Support Deno 1.4.1 and std 0.70.0 diff --git a/.github/workflows/publish-egg.yml b/.github/workflows/publish-egg.yml index cbed007..64884de 100644 --- a/.github/workflows/publish-egg.yml +++ b/.github/workflows/publish-egg.yml @@ -12,7 +12,7 @@ jobs: - uses: denolib/setup-deno@v2 with: deno-version: 1.4.1 - - run: deno install -A -f --unstable -n eggs https://x.nest.land/eggs@0.2.1/mod.ts + - run: deno install -A -f --unstable -n eggs https://x.nest.land/eggs@0.2.2/mod.ts - run: | export PATH="/home/runner/.deno/bin:$PATH" eggs link ${NEST_LAND_KEY} diff --git a/README.md b/README.md index ea2d005..911a45f 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Proxy middleware for Deno Oak HTTP servers. ![GitHub stars](https://img.shields.io/github/stars/asos-craigmorten/oak-http-proxy) ![GitHub forks](https://img.shields.io/github/forks/asos-craigmorten/oak-http-proxy) ![oak-http-proxy License](https://img.shields.io/github/license/asos-craigmorten/oak-http-proxy) [![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://GitHub.com/asos-craigmorten/oak-http-proxy/graphs/commit-activity) [![HitCount](http://hits.dwyl.com/asos-craigmorten/oak-http-proxy.svg)](http://hits.dwyl.com/asos-craigmorten/oak-http-proxy) ```ts -import { proxy } from "https://deno.land/x/oak_http_proxy@1.1.0/mod.ts"; +import { proxy } from "https://deno.land/x/oak_http_proxy@1.1.1/mod.ts"; import { Application } from "https://deno.land/x/oak@v6.2.0/mod.ts"; const app = new Application(); @@ -25,13 +25,13 @@ Before importing, [download and install Deno](https://deno.land/#installation). You can then import oak-http-proxy straight into your project: ```ts -import { proxy } from "https://deno.land/x/oak_http_proxy@1.1.0/mod.ts"; +import { proxy } from "https://deno.land/x/oak_http_proxy@1.1.1/mod.ts"; ``` oak-http-proxy is also available on [nest.land](https://nest.land/package/oak-http-proxy), a package registry for Deno on the Blockchain. ```ts -import { proxy } from "https://x.nest.land/oak-http-proxy@1.1.0/mod.ts"; +import { proxy } from "https://x.nest.land/oak-http-proxy@1.1.1/mod.ts"; ``` ## Docs diff --git a/docs/index.html b/docs/index.html index 61ff237..f4854ff 100644 --- a/docs/index.html +++ b/docs/index.html @@ -68,7 +68,7 @@

oak-http-proxy

Proxy middleware for Deno Oak HTTP servers.

GitHub tag Test deno doc PRs Welcome GitHub issues GitHub stars GitHub forks oak-http-proxy License Maintenance HitCount

-
import { proxy } from "https://deno.land/x/oak_http_proxy@1.1.0/mod.ts";
+				
import { proxy } from "https://deno.land/x/oak_http_proxy@1.1.1/mod.ts";
 import { Application } from "https://deno.land/x/oak@v6.2.0/mod.ts";
 
 const app = new Application();
@@ -82,9 +82,9 @@ 

Installation

This is a Deno module available to import direct from this repo and via the Deno Registry.

Before importing, download and install Deno.

You can then import oak-http-proxy straight into your project:

-
import { proxy } from "https://deno.land/x/oak_http_proxy@1.1.0/mod.ts";
+
import { proxy } from "https://deno.land/x/oak_http_proxy@1.1.1/mod.ts";

oak-http-proxy is also available on nest.land, a package registry for Deno on the Blockchain.

-
import { proxy } from "https://x.nest.land/oak-http-proxy@1.1.0/mod.ts";
+
import { proxy } from "https://x.nest.land/oak-http-proxy@1.1.1/mod.ts";

Docs

diff --git a/egg.json b/egg.json index ea8406d..bbb1f67 100644 --- a/egg.json +++ b/egg.json @@ -1,7 +1,7 @@ { "name": "oak-http-proxy", "description": "Proxy middleware for Deno Oak HTTP servers.", - "version": "1.1.0", + "version": "1.1.1", "repository": "https://github.com/asos-craigmorten/oak-http-proxy", "stable": true, "files": [ diff --git a/examples/basic/README.md b/examples/basic/README.md index 61a6452..1a245f0 100644 --- a/examples/basic/README.md +++ b/examples/basic/README.md @@ -13,7 +13,7 @@ deno run --allow-net --allow-read ./examples/proxy/index.ts if have the repo cloned locally _OR_ ```bash -deno run --allow-net --allow-read https://deno.land/x/oak_http_proxy@1.1.0/examples/basic/index.ts +deno run --allow-net --allow-read https://deno.land/x/oak_http_proxy@1.1.1/examples/basic/index.ts ``` if you don't! diff --git a/examples/basic/index.ts b/examples/basic/index.ts index 5ab0b23..4ca549f 100644 --- a/examples/basic/index.ts +++ b/examples/basic/index.ts @@ -5,7 +5,7 @@ * * if have the repo cloned locally OR * - * deno run --allow-net https://deno.land/x/oak-http-proxy@1.1.0/examples/basic/index.ts + * deno run --allow-net https://deno.land/x/oak-http-proxy@1.1.1/examples/basic/index.ts * * if you don't! * diff --git a/version.ts b/version.ts index e04ddd2..e3ec1be 100644 --- a/version.ts +++ b/version.ts @@ -1,7 +1,7 @@ /** * Version of oak-http-proxy. */ -export const VERSION: string = "1.1.0"; +export const VERSION: string = "1.1.1"; /** * Supported versions of Deno.