Skip to content

Commit

Permalink
feat: 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
asos-craigmorten committed Sep 19, 2020
1 parent 39da0ff commit 7560e2b
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 11 deletions.
4 changes: 4 additions & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# ChangeLog

## [1.1.1] - 19-09-2020

- chore: upgrade to [email protected] in CI

## [1.1.0] - 19-09-2020

- feat: Support Deno 1.4.1 and std 0.70.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-egg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected].1/mod.ts
- run: deno install -A -f --unstable -n eggs https://x.nest.land/[email protected].2/mod.ts
- run: |
export PATH="/home/runner/.deno/bin:$PATH"
eggs link ${NEST_LAND_KEY}
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected].0/mod.ts";
import { proxy } from "https://deno.land/x/[email protected].1/mod.ts";
import { Application } from "https://deno.land/x/[email protected]/mod.ts";

const app = new Application();
Expand All @@ -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/[email protected].0/mod.ts";
import { proxy } from "https://deno.land/x/[email protected].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/[email protected].0/mod.ts";
import { proxy } from "https://x.nest.land/[email protected].1/mod.ts";
```

## Docs
Expand Down
6 changes: 3 additions & 3 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ <h1>oak-http-proxy</h1>
<p>Proxy middleware for Deno Oak HTTP servers.</p>
<p><a href="https://github.com/asos-craigmorten/oak-http-proxy/tags/"><img src="https://img.shields.io/github/tag/asos-craigmorten/oak-http-proxy" alt="GitHub tag"></a> <img src="https://github.com/asos-craigmorten/oak-http-proxy/workflows/Test/badge.svg" alt="Test"> <a href="https://doc.deno.land/https/deno.land/x/oak_http_proxy/mod.ts"><img src="https://doc.deno.land/badge.svg" alt="deno doc"></a> <a href="http://makeapullrequest.com"><img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg" alt="PRs Welcome"></a> <a href="https://img.shields.io/github/issues/asos-craigmorten/oak-http-proxy"><img src="https://img.shields.io/github/issues/asos-craigmorten/oak-http-proxy" alt="GitHub issues"></a>
<img src="https://img.shields.io/github/stars/asos-craigmorten/oak-http-proxy" alt="GitHub stars"> <img src="https://img.shields.io/github/forks/asos-craigmorten/oak-http-proxy" alt="GitHub forks"> <img src="https://img.shields.io/github/license/asos-craigmorten/oak-http-proxy" alt="oak-http-proxy License"> <a href="https://GitHub.com/asos-craigmorten/oak-http-proxy/graphs/commit-activity"><img src="https://img.shields.io/badge/Maintained%3F-yes-green.svg" alt="Maintenance"></a> <a href="http://hits.dwyl.com/asos-craigmorten/oak-http-proxy"><img src="http://hits.dwyl.com/asos-craigmorten/oak-http-proxy.svg" alt="HitCount"></a></p>
<pre><code class="language-ts"><span class="hljs-keyword">import</span> { proxy } <span class="hljs-keyword">from</span> <span class="hljs-string">&quot;https://deno.land/x/[email protected].0/mod.ts&quot;</span>;
<pre><code class="language-ts"><span class="hljs-keyword">import</span> { proxy } <span class="hljs-keyword">from</span> <span class="hljs-string">&quot;https://deno.land/x/[email protected].1/mod.ts&quot;</span>;
<span class="hljs-keyword">import</span> { Application } <span class="hljs-keyword">from</span> <span class="hljs-string">&quot;https://deno.land/x/[email protected]/mod.ts&quot;</span>;

<span class="hljs-keyword">const</span> app = <span class="hljs-keyword">new</span> Application();
Expand All @@ -82,9 +82,9 @@ <h2>Installation</h2>
<p>This is a <a href="https://deno.land/">Deno</a> module available to import direct from this repo and via the <a href="https://deno.land/x">Deno Registry</a>.</p>
<p>Before importing, <a href="https://deno.land/#installation">download and install Deno</a>.</p>
<p>You can then import oak-http-proxy straight into your project:</p>
<pre><code class="language-ts"><span class="hljs-keyword">import</span> { proxy } <span class="hljs-keyword">from</span> <span class="hljs-string">&quot;https://deno.land/x/[email protected].0/mod.ts&quot;</span>;</code></pre>
<pre><code class="language-ts"><span class="hljs-keyword">import</span> { proxy } <span class="hljs-keyword">from</span> <span class="hljs-string">&quot;https://deno.land/x/[email protected].1/mod.ts&quot;</span>;</code></pre>
<p>oak-http-proxy is also available on <a href="https://nest.land/package/oak-http-proxy">nest.land</a>, a package registry for Deno on the Blockchain.</p>
<pre><code class="language-ts"><span class="hljs-keyword">import</span> { proxy } <span class="hljs-keyword">from</span> <span class="hljs-string">&quot;https://x.nest.land/[email protected].0/mod.ts&quot;</span>;</code></pre>
<pre><code class="language-ts"><span class="hljs-keyword">import</span> { proxy } <span class="hljs-keyword">from</span> <span class="hljs-string">&quot;https://x.nest.land/[email protected].1/mod.ts&quot;</span>;</code></pre>
<a href="#docs" id="docs" style="color: inherit; text-decoration: none;">
<h2>Docs</h2>
</a>
Expand Down
2 changes: 1 addition & 1 deletion egg.json
Original file line number Diff line number Diff line change
@@ -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": [
Expand Down
2 changes: 1 addition & 1 deletion examples/basic/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected].0/examples/basic/index.ts
deno run --allow-net --allow-read https://deno.land/x/[email protected].1/examples/basic/index.ts
```

if you don't!
2 changes: 1 addition & 1 deletion examples/basic/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*
* if have the repo cloned locally OR
*
* deno run --allow-net https://deno.land/x/[email protected].0/examples/basic/index.ts
* deno run --allow-net https://deno.land/x/[email protected].1/examples/basic/index.ts
*
* if you don't!
*
Expand Down
2 changes: 1 addition & 1 deletion version.ts
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit 7560e2b

Please sign in to comment.