Skip to content

Commit 639cde5

Browse files
committed
v3.0.4
1 parent 9f8cfc1 commit 639cde5

17 files changed

+16
-15
lines changed

Excel-REST - Blank.xlsm

3.14 KB
Binary file not shown.

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ It seems like everything has a REST webservice these days and there is no reason
66
Getting started
77
---------------
88

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

1212
For more details see the [Wiki](https://github.com/timhall/Excel-REST/wiki)
@@ -178,6 +178,7 @@ For more details, check out the [Wiki](https://github.com/timhall/Excel-REST/wik
178178
- __3.0.1__ Add `DigestAuthenticator`, new helpers, and cleanup
179179
- __3.0.2__ Switch timeout to `Long` and remove `RestClientBase` (out of sync with v3)
180180
- __3.0.3__ Update OAuth1, deprecate `IncludeCacheBreaker`, update True/False formatting to lowercase, add LinkedIn example
181+
- __3.0.4__ Fix formatting of parameters with spaces for OAuth1 and add logging
181182

182183
#### 2.3.0
183184

authenticators/DigestAuthenticator.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Attribute VB_Creatable = False
88
Attribute VB_PredeclaredId = False
99
Attribute VB_Exposed = False
1010
''
11-
' Digest Authenticator v2.0.5
11+
' Digest Authenticator v2.0.6
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Custom IAuthenticator for Digest Authentication

authenticators/EmptyAuthenticator.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Attribute VB_Creatable = False
88
Attribute VB_PredeclaredId = False
99
Attribute VB_Exposed = False
1010
''
11-
' Base for setting up authenticator v2.0.5
11+
' Base for setting up authenticator v2.0.6
1212
'
1313
' @implements: IAuthenticator v3.*
1414
' @author:

authenticators/FacebookAuthenticator.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Attribute VB_Creatable = False
88
Attribute VB_PredeclaredId = False
99
Attribute VB_Exposed = True
1010
''
11-
' Facebook Authenticator v2.0.5
11+
' Facebook Authenticator v2.0.6
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Custom IAuthenticator for Facebook OAuth

authenticators/GoogleAuthenticator.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Attribute VB_Creatable = False
88
Attribute VB_PredeclaredId = False
99
Attribute VB_Exposed = True
1010
''
11-
' Google Authenticator v2.0.5
11+
' Google Authenticator v2.0.6
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Custom IAuthenticator for "installed application" authentication for Google APIs

authenticators/HttpBasicAuthenticator.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Attribute VB_Creatable = False
88
Attribute VB_PredeclaredId = False
99
Attribute VB_Exposed = True
1010
''
11-
' HttpBasicAuthenticator v2.0.5
11+
' HttpBasicAuthenticator v2.0.6
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Utilize http basic authentication

authenticators/OAuth1Authenticator.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Attribute VB_Creatable = False
88
Attribute VB_PredeclaredId = False
99
Attribute VB_Exposed = True
1010
''
11-
' OAuth1 Authenticator v2.0.5
11+
' OAuth1 Authenticator v2.0.6
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Utilize OAuth1 authentication

authenticators/OAuth2Authenticator.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Attribute VB_Creatable = False
88
Attribute VB_PredeclaredId = False
99
Attribute VB_Exposed = True
1010
''
11-
' OAuth2 Authenticator v2.0.5
11+
' OAuth2 Authenticator v2.0.6
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Utilize OAuth2 authentication

authenticators/TwitterAuthenticator.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Attribute VB_Creatable = False
88
Attribute VB_PredeclaredId = False
99
Attribute VB_Exposed = False
1010
''
11-
' Twitter Authenticator v2.0.5
11+
' Twitter Authenticator v2.0.6
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Custom IAuthenticator for application-only authentication in Twitter's V1.1 REST API

0 commit comments

Comments
 (0)