Skip to content

Commit

Permalink
feat: 2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
asos-craigmorten committed Sep 19, 2020
1 parent 82b86c7 commit 2e3bc78
Show file tree
Hide file tree
Showing 11 changed files with 46 additions and 42 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

## [2.3.1] - 19-09-2020

- feat: update to Deno `1.4.1`, std `0.70.0` and other dep upgrades.

## [2.3.0] - 15-09-2020

- feat: update to Deno `1.4.0`, std `0.69.0` and other dep upgrades.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Use Deno
uses: denolib/setup-deno@v2
with:
deno-version: 1.4.0
deno-version: 1.4.1
- run: make typedoc
- run: make ci
- name: Publish Updated Type Docs
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 @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v2
- uses: denolib/setup-deno@v2
with:
deno-version: 1.4.0
deno-version: 1.4.1
- run: deno install -A -f --unstable -n eggs https://x.nest.land/eggs@0.2.1/mod.ts
- run: |
export PATH="/home/runner/.deno/bin:$PATH"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
deno-version: [1.4.0]
deno-version: [1.4.1]

runs-on: ${{ matrix.os }}

Expand All @@ -27,7 +27,7 @@ jobs:
strategy:
matrix:
os: [windows-latest]
deno-version: [1.4.0]
deno-version: [1.4.1]

runs-on: ${{ matrix.os }}

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ HTTP assertions for Deno made easy via <a href="https://github.com/visionmedia/s
## Getting Started

```ts
import { superdeno } from "https://deno.land/x/superdeno@2.3.0/mod.ts";
import { superdeno } from "https://deno.land/x/superdeno@2.3.1/mod.ts";
import { opine } from "https://deno.land/x/opine@0.21.6/mod.ts";

const app = opine();
Expand Down Expand Up @@ -69,13 +69,13 @@ Before importing, [download and install Deno](https://deno.land/#installation).
You can then import SuperDeno straight into your project:

```ts
import { superdeno } from "https://deno.land/x/superdeno@2.3.0/mod.ts";
import { superdeno } from "https://deno.land/x/superdeno@2.3.1/mod.ts";
```

SuperDeno is also available on [nest.land](https://nest.land/package/superdeno), a package registry for Deno on the Blockchain.

```ts
import { superdeno } from "https://x.nest.land/superdeno@2.3.0/mod.ts";
import { superdeno } from "https://x.nest.land/superdeno@2.3.1/mod.ts";
```

## Example
Expand Down
12 changes: 6 additions & 6 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
export {
serve,
Server,
} from "https://deno.land/std@0.69.0/http/server.ts";
} from "https://deno.land/std@0.70.0/http/server.ts";
export type {
HTTPSOptions,
HTTPOptions,
Response,
} from "https://deno.land/std@0.69.0/http/server.ts";
export { STATUS_TEXT } from "https://deno.land/std@0.69.0/http/http_status.ts";
export { assertEquals } from "https://deno.land/std@0.69.0/testing/asserts.ts";
export { methods } from "https://deno.land/x/opine@0.21.6/src/methods.ts";
export { mergeDescriptors } from "https://deno.land/x/opine@0.21.6/src/utils/mergeDescriptors.ts";
} from "https://deno.land/std@0.70.0/http/server.ts";
export { STATUS_TEXT } from "https://deno.land/std@0.70.0/http/http_status.ts";
export { assertEquals } from "https://deno.land/std@0.70.0/testing/asserts.ts";
export { methods } from "https://deno.land/x/opine@0.22.1/src/methods.ts";
export { mergeDescriptors } from "https://deno.land/x/opine@0.22.1/src/utils/mergeDescriptors.ts";
// TODO: import these as production modules
export { default as util } from "https://dev.jspm.io/npm:util@0.12.3";
export { default as superagent } from "https://dev.jspm.io/npm:superagent@5.3.1";
6 changes: 3 additions & 3 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ <h2>Table of Contents</h2>
<a href="#getting-started" id="getting-started" style="color: inherit; text-decoration: none;">
<h2>Getting Started</h2>
</a>
<pre><code class="language-ts"><span class="hljs-keyword">import</span> { superdeno } <span class="hljs-keyword">from</span> <span class="hljs-string">&quot;https://deno.land/x/superdeno@2.3.0/mod.ts&quot;</span>;
<pre><code class="language-ts"><span class="hljs-keyword">import</span> { superdeno } <span class="hljs-keyword">from</span> <span class="hljs-string">&quot;https://deno.land/x/superdeno@2.3.1/mod.ts&quot;</span>;
<span class="hljs-keyword">import</span> { opine } <span class="hljs-keyword">from</span> <span class="hljs-string">&quot;https://deno.land/x/opine@0.21.6/mod.ts&quot;</span>;

<span class="hljs-keyword">const</span> app = opine();
Expand Down Expand Up @@ -127,9 +127,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 SuperDeno straight into your project:</p>
<pre><code class="language-ts"><span class="hljs-keyword">import</span> { superdeno } <span class="hljs-keyword">from</span> <span class="hljs-string">&quot;https://deno.land/x/superdeno@2.3.0/mod.ts&quot;</span>;</code></pre>
<pre><code class="language-ts"><span class="hljs-keyword">import</span> { superdeno } <span class="hljs-keyword">from</span> <span class="hljs-string">&quot;https://deno.land/x/superdeno@2.3.1/mod.ts&quot;</span>;</code></pre>
<p>SuperDeno is also available on <a href="https://nest.land/package/superdeno">nest.land</a>, a package registry for Deno on the Blockchain.</p>
<pre><code class="language-ts"><span class="hljs-keyword">import</span> { superdeno } <span class="hljs-keyword">from</span> <span class="hljs-string">&quot;https://x.nest.land/superdeno@2.3.0/mod.ts&quot;</span>;</code></pre>
<pre><code class="language-ts"><span class="hljs-keyword">import</span> { superdeno } <span class="hljs-keyword">from</span> <span class="hljs-string">&quot;https://x.nest.land/superdeno@2.3.1/mod.ts&quot;</span>;</code></pre>
<a href="#example" id="example" style="color: inherit; text-decoration: none;">
<h2>Example</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": "superdeno",
"description": "HTTP assertions for Deno made easy via superagent.",
"version": "2.3.0",
"version": "2.3.1",
"repository": "https://github.com/asos-craigmorten/superdeno",
"stable": true,
"files": [
Expand Down
36 changes: 18 additions & 18 deletions lock.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
{
"https://deno.land/std@0.69.0/_util/assert.ts": "e1f76e77c5ccb5a8e0dbbbe6cce3a56d2556c8cb5a9a8802fc9565af72462149",
"https://deno.land/std@0.69.0/async/deferred.ts": "ac95025f46580cf5197928ba90995d87f26e202c19ad961bc4e3177310894cdc",
"https://deno.land/std@0.69.0/async/delay.ts": "35957d585a6e3dd87706858fb1d6b551cb278271b03f52c5a2cb70e65e00c26a",
"https://deno.land/std@0.69.0/async/mod.ts": "39f2602a005805dd1e6b9da4ee5391b14d15e8fec4fa5494a6165c599911d746",
"https://deno.land/std@0.69.0/async/mux_async_iterator.ts": "1352b10a5cee1821a963eb8f4f05603bd7e25f8886eaf8d1888f4b416ddccdf5",
"https://deno.land/std@0.69.0/async/pool.ts": "a499691231d8c249f044f69d204b479ad3af7f115e0b37342829eff076bc2450",
"https://deno.land/std@0.69.0/bytes/mod.ts": "b1a149ac741728db00bda9ce1a2d044f248edd5ac95e708a6cc501bfd3adb4a7",
"https://deno.land/std@0.69.0/encoding/utf8.ts": "8654fa820aa69a37ec5eb11908e20b39d056c9bf1c23ab294303ff467f3d50a1",
"https://deno.land/std@0.69.0/fmt/colors.ts": "ce9375edade12ca09c257743f223fc469d72578d0c74a55cbf1a34f6198ce3df",
"https://deno.land/std@0.69.0/http/_io.ts": "a6108623563611e901b1128ca91aca02982af552aa7c4f39f2240cf6e6cd9ac7",
"https://deno.land/std@0.69.0/http/http_status.ts": "0ecc0799a208f49452023b1b927106ba5a2c13cc6cf6666345db028239d554ab",
"https://deno.land/std@0.69.0/http/server.ts": "9f39d814950c741e0dcf0dfb9a046515f5fb342a62fbc28607c44ac5692e8a7e",
"https://deno.land/std@0.69.0/io/bufio.ts": "e76c5b7bf978a638aae6f62b87efde3ab7203b85902ce9b84ac8388c8c2bb104",
"https://deno.land/std@0.69.0/testing/asserts.ts": "c7c9d90daad2d0dc97cb71bbd91deb4f46f12c10cd372d4a49fa9b4d3840b843",
"https://deno.land/std@0.69.0/testing/diff.ts": "b685fb818c3527f0890628711934863672de2e94f01db421731654243f1eac8f",
"https://deno.land/std@0.69.0/textproto/mod.ts": "ebd84342f62216af1850279d32581c51d0958e36d477c6c26c961987e6240356",
"https://deno.land/x/opine@0.21.6/src/methods.ts": "5dba355af605dbb55a5f02c417786afc2a07018bffc3a4bec1e7066d4fe16c7d",
"https://deno.land/x/opine@0.21.6/src/utils/mergeDescriptors.ts": "e61d541bb6eeeb651f051accbe935fbbdddcb4c1d382994099b4fddf29d10d02",
"https://deno.land/std@0.70.0/_util/assert.ts": "e1f76e77c5ccb5a8e0dbbbe6cce3a56d2556c8cb5a9a8802fc9565af72462149",
"https://deno.land/std@0.70.0/async/deferred.ts": "ac95025f46580cf5197928ba90995d87f26e202c19ad961bc4e3177310894cdc",
"https://deno.land/std@0.70.0/async/delay.ts": "35957d585a6e3dd87706858fb1d6b551cb278271b03f52c5a2cb70e65e00c26a",
"https://deno.land/std@0.70.0/async/mod.ts": "39f2602a005805dd1e6b9da4ee5391b14d15e8fec4fa5494a6165c599911d746",
"https://deno.land/std@0.70.0/async/mux_async_iterator.ts": "1352b10a5cee1821a963eb8f4f05603bd7e25f8886eaf8d1888f4b416ddccdf5",
"https://deno.land/std@0.70.0/async/pool.ts": "a499691231d8c249f044f69d204b479ad3af7f115e0b37342829eff076bc2450",
"https://deno.land/std@0.70.0/bytes/mod.ts": "b1a149ac741728db00bda9ce1a2d044f248edd5ac95e708a6cc501bfd3adb4a7",
"https://deno.land/std@0.70.0/encoding/utf8.ts": "8654fa820aa69a37ec5eb11908e20b39d056c9bf1c23ab294303ff467f3d50a1",
"https://deno.land/std@0.70.0/fmt/colors.ts": "ce9375edade12ca09c257743f223fc469d72578d0c74a55cbf1a34f6198ce3df",
"https://deno.land/std@0.70.0/http/_io.ts": "a6108623563611e901b1128ca91aca02982af552aa7c4f39f2240cf6e6cd9ac7",
"https://deno.land/std@0.70.0/http/http_status.ts": "0ecc0799a208f49452023b1b927106ba5a2c13cc6cf6666345db028239d554ab",
"https://deno.land/std@0.70.0/http/server.ts": "9f39d814950c741e0dcf0dfb9a046515f5fb342a62fbc28607c44ac5692e8a7e",
"https://deno.land/std@0.70.0/io/bufio.ts": "e76c5b7bf978a638aae6f62b87efde3ab7203b85902ce9b84ac8388c8c2bb104",
"https://deno.land/std@0.70.0/testing/asserts.ts": "5c4e1e7a8b9b0be3b5e6d4dabe8407e5de7f55d43a7a96f1e75a78acfb03cd04",
"https://deno.land/std@0.70.0/testing/diff.ts": "b685fb818c3527f0890628711934863672de2e94f01db421731654243f1eac8f",
"https://deno.land/std@0.70.0/textproto/mod.ts": "ebd84342f62216af1850279d32581c51d0958e36d477c6c26c961987e6240356",
"https://deno.land/x/opine@0.22.1/src/methods.ts": "5dba355af605dbb55a5f02c417786afc2a07018bffc3a4bec1e7066d4fe16c7d",
"https://deno.land/x/opine@0.22.1/src/utils/mergeDescriptors.ts": "e61d541bb6eeeb651f051accbe935fbbdddcb4c1d382994099b4fddf29d10d02",
"https://dev.jspm.io/npm:@jspm/core@1.1.1/nodelibs/chunk-0c2d1322.js": "3eed4c7a6cf097af01d9102b533f5a00f12163316eee6aa9c5c83e8b2adb24e5",
"https://dev.jspm.io/npm:@jspm/core@1.1.1/nodelibs/process.js": "9f0a862b551c5c13b46cd32b50ab8f18a95bdd943ac54292ed087c3590b2de4a",
"https://dev.jspm.io/npm:@jspm/core@1/nodelibs/process.js": "a9b37603d48c1d4117bd0b778b84ddab867d67e8ac8ff87ad71fccf72cdc615d",
Expand Down
10 changes: 5 additions & 5 deletions test/deps.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export { dirname, join } from "https://deno.land/std@0.69.0/path/mod.ts";
export { expect } from "https://deno.land/x/expect@v0.2.1/mod.ts";
export * as Opine from "https://deno.land/x/opine@0.21.6/mod.ts";
export * as OpineTypes from "https://deno.land/x/opine@0.21.6/src/types.ts";
export * as Oak from "https://deno.land/x/oak@v6.1.0/mod.ts";
export { dirname, join } from "https://deno.land/std@0.70.0/path/mod.ts";
export { expect } from "https://x.nest.land/expect@0.2.4/mod.ts";
export * as Opine from "https://deno.land/x/opine@0.22.1/mod.ts";
export * as OpineTypes from "https://deno.land/x/opine@0.22.1/src/types.ts";
export * as Oak from "https://deno.land/x/oak@v6.2.0/mod.ts";
4 changes: 2 additions & 2 deletions version.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/**
* Version of Opine.
*/
export const VERSION: string = "2.3.0";
export const VERSION: string = "2.3.1";

/**
* Supported versions of Deno.
*/
export const DENO_SUPPORTED_VERSIONS: string[] = ["1.4.0"];
export const DENO_SUPPORTED_VERSIONS: string[] = ["1.4.1"];

0 comments on commit 2e3bc78

Please sign in to comment.