Skip to content

Commit

Permalink
[#14] Add repository to egg.json (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
asos-craigmorten authored Jun 19, 2020
1 parent 47b1723 commit c9e02ef
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# ChangeLog

## [0.10.2] - 19-06-2020

- feat: add repository field to `egg.json`.
- chore: upgrade eggs CLI in CI.

## [0.10.1] - 18-06-2020

- feat: integration with <https://nest.land> package repository.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
deno-version: [1.0.5, 1.1.0]
deno-version: [1.1.0]

steps:
- name: Install wrk package
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@master
with:
deno-version: 1.1.0
- run: deno install -A -f --unstable -n eggs https://x.nest.land/eggs@0.1.0/mod.ts
- run: deno install -A -f --unstable -n eggs https://x.nest.land/eggs@0.1.3/mod.ts
- run: |
export PATH="/home/runner/.deno/bin:$PATH"
eggs link --key ${NEST_LAND_KEY}
Expand Down
3 changes: 2 additions & 1 deletion egg.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"name": "opine",
"description": "Fast, minimalist web framework for Deno ported from ExpressJS.",
"version": "0.10.1",
"version": "0.10.2",
"repository": "https://github.com/asos-craigmorten/opine",
"stable": true,
"files": [
"./mod.ts",
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.10.1";
export const VERSION: string = "0.10.2";

/**
* Supported version of Deno.
Expand Down

0 comments on commit c9e02ef

Please sign in to comment.