Skip to content

Commit

Permalink
fix: formatting bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
asos-craigmorten committed May 26, 2020
1 parent 4291eb0 commit 5c75a41
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 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

## [0.4.2] - 26-05-2020

- fix: formatting bug.

## [0.4.1] - 26-05-2020

- feat: allow Express-like `port` passing signature for `app.listen()`.
Expand Down
4 changes: 3 additions & 1 deletion examples/json/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,6 @@ app.post("/", function (req, res) {
app.listen({ port: 3000 });
console.log("Opine started on port 3000");
console.log("Try a `POST /` with any JSON payload!");
console.log(`curl -X POST http://localhost:3000/ -d '{"message": "Hello Deno!"}'`);
console.log(
`curl -X POST http://localhost:3000/ -d '{"message": "Hello Deno!"}'`,
);
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.4.1";
export const VERSION: string = "0.4.2";

/**
* Supported version of Deno.
Expand Down

0 comments on commit 5c75a41

Please sign in to comment.