Skip to content

Commit

Permalink
v3.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
timhall committed May 12, 2014
1 parent 1b6e118 commit ce54b47
Show file tree
Hide file tree
Showing 17 changed files with 16 additions and 15 deletions.
Binary file modified Excel-REST - Blank.xlsm
Binary file not shown.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ It seems like everything has a REST webservice these days and there is no reason
Getting started
---------------

1. Download the [latest release (v3.0.2)](https://github.com/timhall/Excel-REST/releases)
1. Download the [latest release (v3.0.3)](https://github.com/timhall/Excel-REST/releases)
2. `Excel-REST - Blank.xlsm` has everything setup and ready to go.

For more details see the [Wiki](https://github.com/timhall/Excel-REST/wiki)
Expand Down Expand Up @@ -177,6 +177,7 @@ For more details, check out the [Wiki](https://github.com/timhall/Excel-REST/wik
- Add `AfterExecute` to `IAuthenticator` (Breaking change, all IAuthenticators must implement this new method)
- __3.0.1__ Add `DigestAuthenticator`, new helpers, and cleanup
- __3.0.2__ Switch timeout to `Long` and remove `RestClientBase` (out of sync with v3)
- __3.0.3__ Update OAuth1, deprecate `IncludeCacheBreaker`, update True/False formatting to lowercase, add LinkedIn example

#### 2.3.0

Expand Down
2 changes: 1 addition & 1 deletion authenticators/DigestAuthenticator.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = False
''
' Digest Authenticator v2.0.4
' Digest Authenticator v2.0.5
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Custom IAuthenticator for Digest Authentication
Expand Down
2 changes: 1 addition & 1 deletion authenticators/EmptyAuthenticator.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = False
''
' Base for setting up authenticator v2.0.4
' Base for setting up authenticator v2.0.5
'
' @implements: IAuthenticator v3.*
' @author:
Expand Down
2 changes: 1 addition & 1 deletion authenticators/FacebookAuthenticator.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
''
' Facebook Authenticator v2.0.4
' Facebook Authenticator v2.0.5
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Custom IAuthenticator for Facebook OAuth
Expand Down
2 changes: 1 addition & 1 deletion authenticators/GoogleAuthenticator.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
''
' Google Authenticator v2.0.4
' Google Authenticator v2.0.5
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Custom IAuthenticator for "installed application" authentication for Google APIs
Expand Down
2 changes: 1 addition & 1 deletion authenticators/HttpBasicAuthenticator.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
''
' HttpBasicAuthenticator v2.0.4
' HttpBasicAuthenticator v2.0.5
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Utilize http basic authentication
Expand Down
2 changes: 1 addition & 1 deletion authenticators/OAuth1Authenticator.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
''
' OAuth1 Authenticator v2.0.4
' OAuth1 Authenticator v2.0.5
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Utilize OAuth1 authentication
Expand Down
2 changes: 1 addition & 1 deletion authenticators/OAuth2Authenticator.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
''
' OAuth2 Authenticator v2.0.4
' OAuth2 Authenticator v2.0.5
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Utilize OAuth2 authentication
Expand Down
2 changes: 1 addition & 1 deletion authenticators/TwitterAuthenticator.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = False
''
' Twitter Authenticator v2.0.4
' Twitter Authenticator v2.0.5
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Custom IAuthenticator for application-only authentication in Twitter's V1.1 REST API
Expand Down
Binary file modified examples/Excel-REST - Example.xlsm
Binary file not shown.
Binary file modified specs/Excel-REST - Specs.xlsm
Binary file not shown.
2 changes: 1 addition & 1 deletion src/IAuthenticator.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
''
' IAuthenticator v3.0.2
' IAuthenticator v3.0.3
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Interface for creating authenticators for rest client
Expand Down
2 changes: 1 addition & 1 deletion src/RestClient.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
''
' RestClient v3.0.2
' RestClient v3.0.3
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Interact with REST web services from Excel
Expand Down
4 changes: 2 additions & 2 deletions src/RestHelpers.bas
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Attribute VB_Name = "RestHelpers"
''
' RestHelpers v3.0.2
' RestHelpers v3.0.3
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Common helpers RestClient
Expand Down Expand Up @@ -38,7 +38,7 @@ Attribute VB_Name = "RestHelpers"

#End If

Private Const UserAgent As String = "Excel Client v3.0.2 (https://github.com/timhall/Excel-REST)"
Private Const UserAgent As String = "Excel Client v3.0.3 (https://github.com/timhall/Excel-REST)"
Private DocumentHelper As Object
Private ElHelper As Object

Expand Down
2 changes: 1 addition & 1 deletion src/RestRequest.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
''
' RestRequest v3.0.2
' RestRequest v3.0.3
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Create a request for use with a rest client
Expand Down
2 changes: 1 addition & 1 deletion src/RestResponse.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
''
' RestResponse v3.0.2
' RestResponse v3.0.3
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Wrapper for http responses
Expand Down

0 comments on commit ce54b47

Please sign in to comment.