Skip to content

Commit

Permalink
feat: 0.19.1
Browse files Browse the repository at this point in the history
  • Loading branch information
asos-craigmorten committed Jul 14, 2020
1 parent 4c955ce commit 1676217
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
6 changes: 5 additions & 1 deletion .github/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# ChangeLog

## [0.19.1] - 14-07-2020

- chore: formatting fix.

## [0.19.0] - 14-07-2020

- [#42] Incorrect URL argument type (#43)
- [#42] Incorrect URL argument type (#43).

## [0.18.0] - 06-07-2020

Expand Down
11 changes: 6 additions & 5 deletions docs/assets/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -254,8 +254,9 @@
e.Vector.prototype.upsert = function (e, t, r) {
this._magnitude = 0;
var i = this.positionForIndex(e);
this.elements[i] == e ? this.elements[i + 1] = r(this.elements[i + 1], t)
: this.elements.splice(i, 0, e, t);
this.elements[i] == e
? this.elements[i + 1] = r(this.elements[i + 1], t)
: this.elements.splice(i, 0, e, t);
},
e.Vector.prototype.magnitude = function () {
if (this._magnitude) return this._magnitude;
Expand Down Expand Up @@ -385,8 +386,8 @@
(u = w,
l = Q,
(a = x).test(r = i) ? r += "e" : u.test(r)
? (o = g, r = r.replace(o, ""))
: l.test(r) && (r += "e"));
? (o = g, r = r.replace(o, ""))
: l.test(r) && (r += "e"));
}
(o = k).test(r) && (r = (i = (I = o.exec(r))[1]) + "i");
(o = S).test(r) &&
Expand Down Expand Up @@ -2096,7 +2097,7 @@ var typedoc,
}),
this.field.addEventListener("keydown", function (e) {
13 == e.keyCode || 27 == e.keyCode || 38 == e.keyCode ||
40 == e.keyCode
40 == e.keyCode
? (_this.preventPress = !0,
e.preventDefault(),
13 == e.keyCode
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": "opine",
"description": "Fast, minimalist web framework for Deno ported from ExpressJS.",
"version": "0.19.0",
"version": "0.19.1",
"repository": "https://github.com/asos-craigmorten/opine",
"stable": true,
"files": [
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 Opine.
*/
export const VERSION: string = "0.19.0";
export const VERSION: string = "0.19.1";

/**
* Supported version of Deno.
Expand Down

0 comments on commit 1676217

Please sign in to comment.