Skip to content

Commit 5bb1dbf

Browse files
committed
preparing for v0.1 release
1 parent 3e6a39c commit 5bb1dbf

9 files changed

+10
-11
lines changed

.travis.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,16 @@ language: go
33
sudo: false
44

55
branches:
6-
only:
6+
except:
77
# - master
8-
# - integration
98

109
go:
1110
- 1.6
1211
- 1.7
1312
- 1.8
1413
- tip
1514

16-
go_import_path: aahframework.org/ahttp.v0-unstable
15+
go_import_path: aahframework.org/ahttp.v0
1716

1817
script:
1918
- go test -race -coverprofile=coverage.txt -covermode=atomic

content_type_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"net/url"
99
"testing"
1010

11-
"aahframework.org/test.v0-unstable/assert"
11+
"aahframework.org/test.v0/assert"
1212
)
1313

1414
func TestNegotiateContentType(t *testing.T) {

fs_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"strings"
1111
"testing"
1212

13-
"aahframework.org/test.v0-unstable/assert"
13+
"aahframework.org/test.v0/assert"
1414
)
1515

1616
func TestNoDirDisplay(t *testing.T) {

header.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"strconv"
1313
"strings"
1414

15-
"aahframework.org/essentials.v0-unstable"
15+
"aahframework.org/essentials.v0"
1616
)
1717

1818
// HTTP Header names

header_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"net/url"
1010
"testing"
1111

12-
"aahframework.org/test.v0-unstable/assert"
12+
"aahframework.org/test.v0/assert"
1313
)
1414

1515
func TestParseAcceptHeaderLanguage(t *testing.T) {

request.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"net/url"
1313
"strings"
1414

15-
"aahframework.org/essentials.v0-unstable"
15+
"aahframework.org/essentials.v0"
1616
)
1717

1818
const jsonpReqParamKey = "callback"

request_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"net/url"
1010
"testing"
1111

12-
"aahframework.org/test.v0-unstable/assert"
12+
"aahframework.org/test.v0/assert"
1313
)
1414

1515
func TestClientIP(t *testing.T) {

response.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"net"
1212
"net/http"
1313

14-
"aahframework.org/essentials.v0-unstable"
14+
"aahframework.org/essentials.v0"
1515
)
1616

1717
type (

response_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"testing"
1515
"time"
1616

17-
"aahframework.org/test.v0-unstable/assert"
17+
"aahframework.org/test.v0/assert"
1818
)
1919

2020
func TestResponseWriter(t *testing.T) {

0 commit comments

Comments
 (0)