Skip to content

Commit f144d66

Browse files
committed
v3.0.6
1 parent 207ca1c commit f144d66

9 files changed

+8
-7
lines changed

Excel-REST - Blank.xlsm

-741 Bytes
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.5)](https://github.com/timhall/Excel-REST/releases)
9+
1. Download the [latest release (v3.0.6)](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)
@@ -180,6 +180,7 @@ For more details, check out the [Wiki](https://github.com/timhall/Excel-REST/wik
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
182182
- __3.0.5__ Allow Array and Collection for Body in `Request.AddBody` and `Client.PostJSON`
183+
- __3.0.6__ Convert Empty to `null` for json
183184

184185
#### 2.3.0
185186

examples/Excel-REST - Example.xlsm

605 Bytes
Binary file not shown.

specs/Excel-REST - Specs.xlsm

-43.8 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.5
11+
' IAuthenticator v3.0.6
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.5
11+
' RestClient v3.0.6
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.5
3+
' RestHelpers v3.0.6
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.5 (https://github.com/timhall/Excel-REST)"
41+
Private Const UserAgent As String = "Excel Client v3.0.6 (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.5
11+
' RestRequest v3.0.6
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.5
11+
' RestResponse v3.0.6
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Wrapper for http responses

0 commit comments

Comments
 (0)