Skip to content

Latest commit

 

History

History
46 lines (32 loc) · 798 Bytes

CHANGELOG.md

File metadata and controls

46 lines (32 loc) · 798 Bytes

0.1.3

  • Enable use of server side sign-in (573dcec, 710aba5)
  • API: Add logout method (2a2d10c)

0.1.2

  • Bower: remove minifed version from main value
  • Dependencies: remove connect dependency (Gruntfile)
  • API: Add the getUser method and remove it from login (#1, #4)

Breaking Changes

The API for login has been changed (#4):

Before:

GooglePlus.login().then(function (user) {
    console.log(user);
}, function (err) {
    console.log(err);
});

After:

GooglePlus.login().then(function (authResult) {
    console.log(authResult);

    GooglePlus.getUser().then(function (user) {
        console.log(user);
    });
}, function (err) {
    console.log(err);
});

0.1.1

  • added setToken / getToken methods

0.1.0

  • Initial release