Skip to content

Commit

Permalink
Merge branch 'release/0.8.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
nwtgck committed Jan 18, 2019
2 parents bdca53d + 05e7438 commit 7505ec5
Show file tree
Hide file tree
Showing 9 changed files with 505 additions and 243 deletions.
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ ANCHORS:
steps:
- checkout
- run: npm install
- run: npm run lint
- run: npm test
# Check whether "run build" is successful
- run: npm run build
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)

## [Unreleased]

## [0.8.0] - 2019-01-18
### Changed
* Introduce TSLint and change the interfaces of `Server` class

## [0.7.1] - 2019-01-17
### Fixed
* Close sender if all receivers close
Expand Down Expand Up @@ -91,7 +95,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
* Docker automated build on Docker Hub
* Support HTTPS

[Unreleased]: https://github.com/nwtgck/piping-server/compare/v0.7.1...HEAD
[Unreleased]: https://github.com/nwtgck/piping-server/compare/v0.8.0...HEAD
[0.8.0]: https://github.com/nwtgck/piping-seraver/compare/v0.7.1...v0.8.0
[0.7.1]: https://github.com/nwtgck/piping-seraver/compare/v0.7.0...v0.7.1
[0.7.0]: https://github.com/nwtgck/piping-seraver/compare/v0.6.1...v0.7.0
[0.6.1]: https://github.com/nwtgck/piping-seraver/compare/v0.6.0...v0.6.1
Expand Down
204 changes: 203 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "piping-server",
"version": "0.7.1",
"version": "0.8.0",
"description": "HTTP Piping Data Transfer Server",
"bin": {
"piping-server": "dist/src/index.js"
Expand All @@ -10,6 +10,7 @@
"scripts": {
"build": "tsc",
"start": "npm run build && node dist/src/index.js",
"lint": "tslint 'src/**/*.ts' && tslint 'test/**/*.ts'",
"prepare": "npm run build",
"test": "mocha --require ts-node/register --timeout 10000 test/**/*.ts"
},
Expand Down Expand Up @@ -41,6 +42,7 @@
"request": "^2.88.0",
"then-request": "^6.0.0",
"ts-node": "^7.0.1",
"tslint": "^5.12.1",
"typescript": "^3.0.1"
},
"dependencies": {
Expand Down
Loading

0 comments on commit 7505ec5

Please sign in to comment.