Skip to content

Commit

Permalink
Bump version and update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
cortesi committed Jan 20, 2019
1 parent 7897855 commit 689756b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,11 @@
# v0.9: 21 January 2019

* Fix live reload issues on Linux (Delyan Angelov)
* Only inject livereload content if content type is text/html (Mattias Wadman)
* Fix treatment of X-Forwarded-Proto (Marvin Frick)
* Dependency updates and test improvements


# v0.8: 8 January 2018

* Improvements in file change monitoring, fixing a number of bugs and
Expand Down
10 changes: 5 additions & 5 deletions server.go
Expand Up @@ -15,7 +15,7 @@ import (

"golang.org/x/net/context"

"github.com/GeertJohan/go.rice"
rice "github.com/GeertJohan/go.rice"
"github.com/goji/httpauth"

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

const (
// Version is the current version of devd
Version = "0.8"
Version = "0.9"
portLow = 8000
portHigh = 10000
)
Expand Down Expand Up @@ -136,9 +136,9 @@ type Devd struct {
Routes RouteCollection

// Shaping
Latency int
DownKbps uint
UpKbps uint
Latency int
DownKbps uint
UpKbps uint
ServingScheme string

// Add headers
Expand Down

1 comment on commit 689756b

@wader
Copy link
Contributor

@wader wader commented on 689756b Jan 20, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🎉Thanks again for devd!

Please sign in to comment.