Skip to content

Commit 689756b

Browse files
committed
Bump version and update CHANGELOG
1 parent 7897855 commit 689756b

2 files changed

Lines changed: 13 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# v0.9: 21 January 2019
2+
3+
* Fix live reload issues on Linux (Delyan Angelov)
4+
* Only inject livereload content if content type is text/html (Mattias Wadman)
5+
* Fix treatment of X-Forwarded-Proto (Marvin Frick)
6+
* Dependency updates and test improvements
7+
8+
19
# v0.8: 8 January 2018
210

311
* Improvements in file change monitoring, fixing a number of bugs and

server.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515

1616
"golang.org/x/net/context"
1717

18-
"github.com/GeertJohan/go.rice"
18+
rice "github.com/GeertJohan/go.rice"
1919
"github.com/goji/httpauth"
2020

2121
"github.com/cortesi/devd/httpctx"
@@ -29,7 +29,7 @@ import (
2929

3030
const (
3131
// Version is the current version of devd
32-
Version = "0.8"
32+
Version = "0.9"
3333
portLow = 8000
3434
portHigh = 10000
3535
)
@@ -136,9 +136,9 @@ type Devd struct {
136136
Routes RouteCollection
137137

138138
// Shaping
139-
Latency int
140-
DownKbps uint
141-
UpKbps uint
139+
Latency int
140+
DownKbps uint
141+
UpKbps uint
142142
ServingScheme string
143143

144144
// Add headers

0 commit comments

Comments
 (0)