Releases: vishy1618/gcm
Releases · vishy1618/gcm
curl -> hyper, rustc-serialize -> serde
We are now using the hyper HTTP client instead of libcurl and the serde framework for serializing/deserializing JSON. In addition, fixed a bug with .dry_run()
giving a response on message_id
field that was not a u64
.
Package reorganisation
This release includes some package reorganisations. The following package structures have changed:
// Before:
use gcm::message::Message;
use gcm::message::response::{GcmError, GcmResponse};
use gcm::notification::{Notification, NotificationBuilder};
// After:
use gcm::{Message, Notification, NotificationBuilder, GcmError, GcmResponse};
// or more simply:
use gcm::*;
Initial Release
0.1.0 Added license