Skip to content
This repository has been archived by the owner on May 16, 2023. It is now read-only.

Commit

Permalink
v1.0.0: Graduate to release
Browse files Browse the repository at this point in the history
  • Loading branch information
Cretezy committed Apr 12, 2020
1 parent 966a61e commit 7c28e44
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
## Unreleased
## 1.0.0 - 2020-04-12

- Graduate to v1.0.0
- Require Node 10
- Export `IRouteOptions`

## 1.0.0-rc.9 - 2020-04-10

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "routex",
"version": "1.0.0-rc.9",
"version": "1.0.0",
"description": "Modern Node router",
"keywords": [
"router",
Expand All @@ -13,11 +13,11 @@
},
"license": "MIT",
"author": "Charles Crete <charles@cretezy.com>",
"main": "dist/lib/index.js",
"typings": "dist/types/index.d.ts",
"files": [
"dist"
],
"main": "dist/lib/index.js",
"typings": "dist/types/index.d.ts",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
Expand Down
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ export {
export { AppMiddleware, IAppMiddleware } from "./appMiddleware";
export { ICtx, ICtxProviders, ICtxData, ICreateCtx } from "./ctx";
export { ErrorHandler, Handler, Middleware } from "./handler";
export { IRouteOptions } from "./route";

0 comments on commit 7c28e44

Please sign in to comment.