Skip to content

Commit ea5e953

Browse files
author
matt.evans
committed
chore(ver): bump 0.1.5
1 parent 7eb366b commit ea5e953

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.DS_Store
2+
.idea

.travis.yml

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 4 deletions
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)