Release v3.0.0
Breaking Changes
If you are upgrading from 3.0.0-beta.1, there is 1 breaking change. We have removed DefaultClient
in place of NewClient(string)
:
Change this:
recurly.APIKey = "<apikey>"
client := recurly.DefaultClient()
To:
client := recurly.NewClient("<apikey>")
Implemented enhancements:
- Add some more scripts and bump to 3.0.0 #26 (bhelx)
- Adds
NewClient
and removesDefaultClient
#25 (bhelx) - Only log warnings and errors #24 (bhelx)
- Implement Pager.Count() #23 (bhelx)
- Add some tests #22 (joannasese)
Merged pull requests: