Skip to content

Commit b1fb088

Browse files
committed
v0.10.3
1 parent db616cf commit b1fb088

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,9 @@ When submitting code, please keep commits small, and do not modify the README fi
224224

225225
# Changelog
226226

227+
### 0.10.3
228+
* CLI: Fix port and host not displaying the right data after refactoring.
229+
227230
### 0.10.2
228231
* Dependencies: Update Chokidar, opts, and WS to latest versions.
229232
* CLI: Fix `--corp` flag not working as intended

lib/command.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ runner = ->
77
server = res.server
88
path = res.path
99

10-
console.log "Starting LiveReload v#{pjson.version} for #{path} on #{server.host}:#{server.port}."
10+
console.log "Starting LiveReload v#{pjson.version} for #{path} on #{server.config.host}:#{server.config.port}."
1111

1212
server.on 'error', (err) ->
1313

lib/command.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "livereload",
33
"description": "LiveReload server",
4-
"version": "0.10.2",
4+
"version": "0.10.3",
55
"contributors": [
66
{
77
"name": "Brian P. Hogan",

0 commit comments

Comments
 (0)