Releases: ebc-2in2crc/pixela4go
Releases · ebc-2in2crc/pixela4go
v1.10.0
What's Changed
- Support Pixela v1.29.0 by @ebc-2in2crc in #28
- Support
startOnMonday
by @ebc-2in2crc in #30
Full Changelog: v1.9.0...v1.10.0
v1.9.0
What's Changed
- Support Pixela v1.28.0 by @ebc-2in2crc in #27
client := pixela.New("YOUR_NAME", "YOUR_TOKEN")
input := &pixela.GraphUpdatePixelsInput{
ID: String("GRAPH_ID"),
Pixels: []PixelInput{
{
Date: String("20180101"),
Quantity: String("1"),
},
{
Date: String("20180102"),
Quantity: String("2"),
},
},
}
result, err := client.Graph().UpdatePixels(input)
Full Changelog: v1.8.0...v1.9.0
v1.8.0
Support Pixela v1.27.0
What's Changed
- Add PR workflow by @ebc-2in2crc in #19
- Add CI badge by @ebc-2in2crc in #21
- Do not use Travis-CI by @ebc-2in2crc in #23
- Support Pixela v1.27.0 by @ebc-2in2crc in #25
Full Changelog: v1.7.1...v1.8.0
v1.7.1
v1.7.0
v1.6.3
- Check if the work should be finished (Check channel that
Context.Done()
returns)
v1.6.2
- Fix field name:
IsRejected
=>isRejected
v1.6.1
- Determine by isRejected field whether the API call is rejected.
v1.6.0
Support Pixela v1.25.0
- [Experimental] Support retries when an API call is rejected.
This function is a measure for the specification added in Pixela v1.25.0. - Makefile: Use
go install
insteadgo get
.
Support retries when an API call is rejected.
// Specify the number of retries if you want to retry when the API call is rejected.
// If you do not want to retry, you do not need to specify it.
pixela.RetryCount = 10