Skip to content

Commit 128c543

Browse files
committed
feat: switch urls
1 parent c2f5270 commit 128c543

File tree

7 files changed

+7
-11
lines changed

7 files changed

+7
-11
lines changed

.build.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,11 @@ packages:
55
- bash
66
- findutils
77
sources:
8-
- https://github.com/emersion/go-sasl
8+
- https://github.com/uponusolutions/go-sasl
99
tasks:
1010
- build: |
1111
cd go-sasl
1212
go build -v ./...
1313
- test: |
1414
cd go-sasl
1515
go test -coverprofile=coverage.txt -covermode=atomic ./...
16-
- upload-coverage: |
17-
cd go-sasl
18-
export CODECOV_TOKEN=3f257f71-a128-4834-8f68-2b534e9f4cb1
19-
curl -s https://codecov.io/bash | bash

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# go-sasl
22

3-
[![Go Reference](https://pkg.go.dev/badge/github.com/emersion/go-sasl.svg)](https://pkg.go.dev/github.com/emersion/go-sasl)
3+
[![Go Reference](https://pkg.go.dev/badge/github.com/uponusolutions/go-sasl.svg)](https://pkg.go.dev/github.com/uponusolutions/go-sasl)
44

55
A [SASL](https://tools.ietf.org/html/rfc4422) library written in Go.
66

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module github.com/emersion/go-sasl
1+
module github.com/uponusolutions/go-sasl
22

3-
go 1.12
3+
go 1.23.5

go.sum

Whitespace-only changes.

login_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"errors"
66
"testing"
77

8-
"github.com/emersion/go-sasl"
8+
"github.com/uponusolutions/go-sasl"
99
)
1010

1111
func TestNewLoginClient(t *testing.T) {

oauthbearer_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"bytes"
55
"testing"
66

7-
"github.com/emersion/go-sasl"
7+
"github.com/uponusolutions/go-sasl"
88
)
99

1010
func TestNewOAuthBearerClientNoHostOrPort(t *testing.T) {

plain_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"errors"
66
"testing"
77

8-
"github.com/emersion/go-sasl"
8+
"github.com/uponusolutions/go-sasl"
99
)
1010

1111
func TestNewPlainClient(t *testing.T) {

0 commit comments

Comments
 (0)