Skip to content

Commit bc54f87

Browse files
authored
Merge pull request #34 from UpCloudLtd/feature/rebrand
Fixes after transferring the repository
2 parents 2aa86f8 + 964de0f commit bc54f87

14 files changed

Lines changed: 21 additions & 17 deletions

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: go
22

33
go:
4-
- 1.6
54
- 1.7
5+
- 1.8
66

77
script: travis_retry go test ./... -v -parallel 8

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change log
22

3+
## 2.0.0
4+
5+
* moved project to UpCloud's own GitHub organization
6+
37
## 1.1.0
48

59
* improve documentation

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Build Status](https://travis-ci.org/UpCloudLtd/upcloud-go-sdk.svg?branch=master)](https://travis-ci.org/UpCloudLtd/upcloud-go-sdk)
44
[![Go Report Card](https://goreportcard.com/badge/github.com/UpCloudLtd/upcloud-go-sdk)](https://goreportcard.com/report/github.com/UpCloudLtd/upcloud-go-sdk)
5-
[![GoDoc](https://godoc.org/github.com/Jalle19/upcloud-go-sdk?status.svg)](https://godoc.org/github.com/Jalle19/upcloud-go-sdk)
5+
[![GoDoc](https://godoc.org/github.com/UpCloudLtd/upcloud-go-sdk?status.svg)](https://godoc.org/github.com/UpCloudLtd/upcloud-go-sdk)
66

77
This is the SDK for interfacing with UpCloud's API using the Go programming language. The features in the development kit allow easy application creation and simplify UpCloud API integration when using Go.
88

upcloud/request/firewall.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package request
33
import (
44
"encoding/xml"
55
"fmt"
6-
"github.com/Jalle19/upcloud-go-sdk/upcloud"
6+
"github.com/UpCloudLtd/upcloud-go-sdk/upcloud"
77
)
88

99
// GetFirewallRulesRequest represents a request for retrieving the firewall rules for a specific server

upcloud/request/firewall_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package request
22

33
import (
44
"encoding/xml"
5-
"github.com/Jalle19/upcloud-go-sdk/upcloud"
5+
"github.com/UpCloudLtd/upcloud-go-sdk/upcloud"
66
"github.com/stretchr/testify/assert"
77
"testing"
88
)

upcloud/request/ip_address_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package request
22

33
import (
44
"encoding/xml"
5-
"github.com/Jalle19/upcloud-go-sdk/upcloud"
5+
"github.com/UpCloudLtd/upcloud-go-sdk/upcloud"
66
"github.com/stretchr/testify/assert"
77
"testing"
88
)

upcloud/request/server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package request
33
import (
44
"encoding/xml"
55
"fmt"
6-
"github.com/Jalle19/upcloud-go-sdk/upcloud"
6+
"github.com/UpCloudLtd/upcloud-go-sdk/upcloud"
77
"strings"
88
"time"
99
)

upcloud/request/server_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package request
22

33
import (
44
"encoding/xml"
5-
"github.com/Jalle19/upcloud-go-sdk/upcloud"
5+
"github.com/UpCloudLtd/upcloud-go-sdk/upcloud"
66
"github.com/stretchr/testify/assert"
77
"testing"
88
"time"

upcloud/request/storage.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package request
33
import (
44
"encoding/xml"
55
"fmt"
6-
"github.com/Jalle19/upcloud-go-sdk/upcloud"
6+
"github.com/UpCloudLtd/upcloud-go-sdk/upcloud"
77
"time"
88
)
99

upcloud/request/storage_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package request
22

33
import (
44
"encoding/xml"
5-
"github.com/Jalle19/upcloud-go-sdk/upcloud"
5+
"github.com/UpCloudLtd/upcloud-go-sdk/upcloud"
66
"github.com/stretchr/testify/assert"
77
"testing"
88
)

0 commit comments

Comments
 (0)