Skip to content

Commit

Permalink
Merge pull request #19 from nicacioliveira/release/1.0.5
Browse files Browse the repository at this point in the history
Release version 1.0.5
  • Loading branch information
nicacioliveira authored Jan 17, 2022
2 parents ac77d14 + 11891c7 commit 95eafc3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.5] - 2022-01-17

- New route in expressjs /alyson

## [1.0.4] - 2021-10-27

Expand Down Expand Up @@ -46,10 +49,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

[1.0.1]: https://github.com/nicacioliveira/gactions-cicd-boilerplate/compare/1.0.0...1.0.1

[Unreleased]: https://github.com/nicacioliveira/gactions-cicd-boilerplate/compare/1.0.4...HEAD
[unreleased]: https://github.com/nicacioliveira/gactions-cicd-boilerplate/compare/1.0.4...HEAD

[1.0.4]: https://github.com/nicacioliveira/gactions-cicd-boilerplate/compare/1.0.2...1.0.4

[1.0.3]: https://github.com/nicacioliveira/gactions-cicd-boilerplate/compare/1.0.2...1.0.3

[1.0.2]: https://github.com/nicacioliveira/gactions-cicd-boilerplate/compare/1.0.1...1.0.2

[Unreleased]: https://github.com/nicacioliveira/gactions-cicd-boilerplate/compare/1.0.5...HEAD

[1.0.5]: https://github.com/nicacioliveira/gactions-cicd-boilerplate/compare/1.0.4...1.0.5
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.11.0"
},
"version": "1.0.4"
"version": "1.0.5"
}
4 changes: 4 additions & 0 deletions src/app/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ const configRoutes = () => {
res.json(req.headers);
});

app.get("/alyson", (req, res) => {
res.json(req.headers);
});

// subroute example

const subRouter = express();
Expand Down

0 comments on commit 95eafc3

Please sign in to comment.