Skip to content

Commit 238f2f5

Browse files
committed
v3.0.5
1 parent 0a7fb40 commit 238f2f5

9 files changed

+8
-7
lines changed

Excel-REST - Blank.xlsm

-18.7 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.4)](https://github.com/timhall/Excel-REST/releases)
9+
1. Download the [latest release (v3.0.5)](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)
@@ -179,6 +179,7 @@ For more details, check out the [Wiki](https://github.com/timhall/Excel-REST/wik
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
181181
- __3.0.4__ Fix formatting of parameters with spaces for OAuth1 and add logging
182+
- __3.0.5__ Allow Array and Collection for Body in `Request.AddBody` and `Client.PostJSON`
182183

183184
#### 2.3.0
184185

examples/Excel-REST - Example.xlsm

-2.86 KB
Binary file not shown.

specs/Excel-REST - Specs.xlsm

-56.7 KB
Binary file not shown.

src/IAuthenticator.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-
' IAuthenticator v3.0.4
11+
' IAuthenticator v3.0.5
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Interface for creating authenticators for rest client

src/RestClient.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-
' RestClient v3.0.4
11+
' RestClient v3.0.5
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Interact with REST web services from Excel

src/RestHelpers.bas

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Attribute VB_Name = "RestHelpers"
22
''
3-
' RestHelpers v3.0.4
3+
' RestHelpers v3.0.5
44
' (c) Tim Hall - https://github.com/timhall/Excel-REST
55
'
66
' Common helpers RestClient
@@ -38,7 +38,7 @@ Attribute VB_Name = "RestHelpers"
3838

3939
#End If
4040

41-
Private Const UserAgent As String = "Excel Client v3.0.4 (https://github.com/timhall/Excel-REST)"
41+
Private Const UserAgent As String = "Excel Client v3.0.5 (https://github.com/timhall/Excel-REST)"
4242
Private DocumentHelper As Object
4343
Private ElHelper As Object
4444

src/RestRequest.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-
' RestRequest v3.0.4
11+
' RestRequest v3.0.5
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Create a request for use with a rest client

src/RestResponse.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-
' RestResponse v3.0.4
11+
' RestResponse v3.0.5
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Wrapper for http responses

0 commit comments

Comments
 (0)