Skip to content

Commit 04f4aba

Browse files
authored
Merge pull request #5 from mattevans/chore/ver-bump
chore(ver): bump 0.1.5
2 parents 7eb366b + ea5e953 commit 04f4aba

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.DS_Store
2+
.idea

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
sudo: false
22
language: go
33
go:
4-
- 1.16.x
4+
- 1.17.x
55
- tip

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module github.com/mattevans/postmark-go
22

3-
go 1.16
3+
go 1.17

postmark.go

+1-4
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,9 @@ import (
1111
)
1212

1313
const (
14-
packageVersion = "0.1.4"
14+
packageVersion = "0.1.5"
1515
backendURL = "https://api.postmarkapp.com"
1616
userAgent = "postmark-go/" + packageVersion
17-
18-
connectionTypeAccount = "account"
19-
connectionTypeServer = "server"
2017
)
2118

2219
// Client holds a connection to the Postmark API.

0 commit comments

Comments
 (0)