Skip to content

Commit

Permalink
Update CHANGELOG for 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
thrawn01 committed Jan 28, 2019
1 parent a2049d2 commit 6055e41
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [3.3.0-rc.0] - 2019-01-23
## [3.3.0] - 2019-01-28
### Changes
* Changed signature of CreateDomain() Now returns JSON response
* Changed signature of GetDomain() Now returns a single DomainResponse
* Clarified installation notes for non golang module users
* Changed 'Public Key' to 'Public Validation Key' in readme
* Fixed issue with Next() for limit/skip based iterators

### Added
* Added VerifyDomain()

## [3.2.0] - 2019-01-21
### Changes
Expand Down
1 change: 1 addition & 0 deletions mailgun.go
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ type Mailgun interface {
GetDomain(ctx context.Context, domain string) (DomainResponse, error)
CreateDomain(ctx context.Context, name string, pass string, opts *CreateDomainOptions) (DomainResponse, error)
DeleteDomain(ctx context.Context, name string) error
VerifyDomain(ctx context.Context, name string) (string, error)
UpdateDomainConnection(ctx context.Context, domain string, dc DomainConnection) error
GetDomainConnection(ctx context.Context, domain string) (DomainConnection, error)
GetDomainTracking(ctx context.Context, domain string) (DomainTracking, error)
Expand Down

0 comments on commit 6055e41

Please sign in to comment.