Skip to content
This repository has been archived by the owner on Jan 18, 2023. It is now read-only.

Commit

Permalink
Version bump to V0.4.10 + README/Doc update
Browse files Browse the repository at this point in the history
  • Loading branch information
benorama committed Apr 3, 2013
1 parent f371435 commit 8d86ef6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion FacebookSdkGrailsPlugin.groovy
Expand Up @@ -2,7 +2,7 @@ import grails.plugin.facebooksdk.*


class FacebookSdkGrailsPlugin { class FacebookSdkGrailsPlugin {


def version = "0.4.9" def version = "0.4.10"
def grailsVersion = "2.0 > *" def grailsVersion = "2.0 > *"


def author = "Benoit Hediard" def author = "Benoit Hediard"
Expand Down
3 changes: 2 additions & 1 deletion README.md
Expand Up @@ -77,6 +77,7 @@ Project documentation is located here :
WARNING: Since V0.4.0, _FacebookApp_, _FacebookSdkFilters_ and _FacebookAppService_ from V0.3.* are DEPRECATED and have been replaced by _FacebookContext_. WARNING: Since V0.4.0, _FacebookApp_, _FacebookSdkFilters_ and _FacebookAppService_ from V0.3.* are DEPRECATED and have been replaced by _FacebookContext_.
Please check [FacebookContext](http://benorama.github.com/grails-facebook-sdk/guide/facebookContext.html) doc for more info. Please check [FacebookContext](http://benorama.github.com/grails-facebook-sdk/guide/facebookContext.html) doc for more info.


* 2013-04-03 **V0.4.10** : RestFB dependency updated to 1.6.12 + bug fix token exchange
* 2013-03-19 **V0.4.9** : bug fix token exchange from code with concurrent requests (thanks to [elegorod](https://github.com/elegorod)) * 2013-03-19 **V0.4.9** : bug fix token exchange from code with concurrent requests (thanks to [elegorod](https://github.com/elegorod))
* 2013-01-03 **V0.4.8** : bug fix token expiration time handling (in Facebook Page tabs) * 2013-01-03 **V0.4.8** : bug fix token expiration time handling (in Facebook Page tabs)
* 2012-12-20 **V0.4.7** : bug fix resources definition * 2012-12-20 **V0.4.7** : bug fix resources definition
Expand All @@ -87,7 +88,7 @@ Please check [FacebookContext](http://benorama.github.com/grails-facebook-sdk/gu
* 2012-10-10 **V0.4.2** : bug fix in batch responses error handling * 2012-10-10 **V0.4.2** : bug fix in batch responses error handling
* 2012-09-25 **V0.4.1** : bug fix in server side OAuth redirect * 2012-09-25 **V0.4.1** : bug fix in server side OAuth redirect
* 2012-09-25 **V0.4.0** : complete refactoring to improve SDK architecture ([FacebookContext](http://benorama.github.com/grails-facebook-sdk/guide/facebookContext.html) implemented) and [multiple apps support](http://benorama.github.com/grails-facebook-sdk/guide/configuration.html) added * 2012-09-25 **V0.4.0** : complete refactoring to improve SDK architecture ([FacebookContext](http://benorama.github.com/grails-facebook-sdk/guide/facebookContext.html) implemented) and [multiple apps support](http://benorama.github.com/grails-facebook-sdk/guide/configuration.html) added
* 2012-09-03 **V0.3.6** : latest RestFB 1.6.10 dependency, _proxyHost_ and _proxyPort_ added to config and _signedRequest_ added to filter _facebook_ map * 2012-09-03 **V0.3.6** : RestFB dependency updated to 1.6.10, _proxyHost_ and _proxyPort_ added to config and _signedRequest_ added to filter _facebook_ map
* 2012-08-24 **V0.3.5** : _proxyHost_ and _proxyPort_ parameters added to Graph/Rest client (thanks to Eduard Martini) * 2012-08-24 **V0.3.5** : _proxyHost_ and _proxyPort_ parameters added to Graph/Rest client (thanks to Eduard Martini)
* 2012-07-23 **V0.3.4** : bug fix in facebookAppService * 2012-07-23 **V0.3.4** : bug fix in facebookAppService
* 2012-07-17 **V0.3.3** : readTimeout parameter added to Graph/Rest client + upgrade to Grails 2.1 with wrapper * 2012-07-17 **V0.3.3** : readTimeout parameter added to Graph/Rest client + upgrade to Grails 2.1 with wrapper
Expand Down
2 changes: 1 addition & 1 deletion src/docs/guide/configuration.gdoc
Expand Up @@ -14,7 +14,7 @@ grails.project.dependency.resolution = {
} }
plugins { plugins {
//here go your plugin dependencies //here go your plugin dependencies
runtime ':facebook-sdk:0.4.9' runtime ':facebook-sdk:0.4.10'
} }
} }
{code} {code}
Expand Down
3 changes: 2 additions & 1 deletion src/docs/guide/introduction.gdoc
Expand Up @@ -21,6 +21,7 @@ WARNING: Since V0.4.0, @FacebookApp@, @FacebookSdkFilters@ and @FacebookAppServi
Please check [@FacebookContext@|guide:facebookContext] doc for more info. Please check [@FacebookContext@|guide:facebookContext] doc for more info.
{warning} {warning}


* 2013-04-03 *V0.4.10* : RestFB dependency updated to 1.6.12 + bug fix token exchange
* 2013-03-19 *V0.4.9* : bug fix token exchange from code with concurrent requests (thanks to "elegorod":https://github.com/elegorod ) * 2013-03-19 *V0.4.9* : bug fix token exchange from code with concurrent requests (thanks to "elegorod":https://github.com/elegorod )
* 2013-01-03 *V0.4.8* : bug fix token expiration time handling (in Facebook Page tabs) * 2013-01-03 *V0.4.8* : bug fix token expiration time handling (in Facebook Page tabs)
* 2012-12-20 *V0.4.7* : bug fix resources definition * 2012-12-20 *V0.4.7* : bug fix resources definition
Expand All @@ -31,7 +32,7 @@ Please check [@FacebookContext@|guide:facebookContext] doc for more info.
* 2012-10-10 *V0.4.2* : bug fix in batch responses error handling * 2012-10-10 *V0.4.2* : bug fix in batch responses error handling
* 2012-09-25 *V0.4.1* : bug fix in server side OAuth redirect * 2012-09-25 *V0.4.1* : bug fix in server side OAuth redirect
* 2012-10-25 *V0.4.0* : complete refactoring to improve SDK architecture ([@FacebookContext@|guide:facebookContext] implemented) and [multiple Facebook apps|guide:configuration] support added * 2012-10-25 *V0.4.0* : complete refactoring to improve SDK architecture ([@FacebookContext@|guide:facebookContext] implemented) and [multiple Facebook apps|guide:configuration] support added
* 2012-09-03 *V0.3.6* : latest RestFB 1.6.10 dependency, @proxyHost@ and @proxyPort@ added to config and @signedRequest@ added to filter @facebook@ map * 2012-09-03 *V0.3.6* : RestFB dependency updated to 1.6.10, @proxyHost@ and @proxyPort@ added to config and @signedRequest@ added to filter @facebook@ map
* 2012-08-24 *V0.3.5* : @proxyHost@ and @proxyPort@ parameters added to Graph/Rest client (thanks to Eduard Martini) * 2012-08-24 *V0.3.5* : @proxyHost@ and @proxyPort@ parameters added to Graph/Rest client (thanks to Eduard Martini)
* 2012-07-23 *V0.3.4* : bug fix in @facebookAppService@ * 2012-07-23 *V0.3.4* : bug fix in @facebookAppService@
* 2012-07-17 *V0.3.3* : @readTimeout@ parameter added to Graph/Rest client + upgrade to Grails 2.1 with wrapper * 2012-07-17 *V0.3.3* : @readTimeout@ parameter added to Graph/Rest client + upgrade to Grails 2.1 with wrapper
Expand Down

0 comments on commit 8d86ef6

Please sign in to comment.