diff --git a/Excel-REST - Blank.xlsm b/Excel-REST - Blank.xlsm index 777d78e9..bd2f9e9e 100644 Binary files a/Excel-REST - Blank.xlsm and b/Excel-REST - Blank.xlsm differ diff --git a/README.md b/README.md index a6fa65d2..2eeff473 100644 --- a/README.md +++ b/README.md @@ -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.4)](https://github.com/timhall/Excel-REST/releases) +1. Download the [latest release (v3.0.5)](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) @@ -179,6 +179,7 @@ For more details, check out the [Wiki](https://github.com/timhall/Excel-REST/wik - __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 - __3.0.4__ Fix formatting of parameters with spaces for OAuth1 and add logging +- __3.0.5__ Allow Array and Collection for Body in `Request.AddBody` and `Client.PostJSON` #### 2.3.0 diff --git a/examples/Excel-REST - Example.xlsm b/examples/Excel-REST - Example.xlsm index fce9d0db..e830c34e 100644 Binary files a/examples/Excel-REST - Example.xlsm and b/examples/Excel-REST - Example.xlsm differ diff --git a/specs/Excel-REST - Specs.xlsm b/specs/Excel-REST - Specs.xlsm index 47d12e94..536f247d 100644 Binary files a/specs/Excel-REST - Specs.xlsm and b/specs/Excel-REST - Specs.xlsm differ diff --git a/src/IAuthenticator.cls b/src/IAuthenticator.cls index 7ec8d20d..76f87a16 100644 --- a/src/IAuthenticator.cls +++ b/src/IAuthenticator.cls @@ -8,7 +8,7 @@ Attribute VB_Creatable = False Attribute VB_PredeclaredId = False Attribute VB_Exposed = True '' -' IAuthenticator v3.0.4 +' IAuthenticator v3.0.5 ' (c) Tim Hall - https://github.com/timhall/Excel-REST ' ' Interface for creating authenticators for rest client diff --git a/src/RestClient.cls b/src/RestClient.cls index d6c01ee3..5b7bc109 100644 --- a/src/RestClient.cls +++ b/src/RestClient.cls @@ -8,7 +8,7 @@ Attribute VB_Creatable = False Attribute VB_PredeclaredId = False Attribute VB_Exposed = True '' -' RestClient v3.0.4 +' RestClient v3.0.5 ' (c) Tim Hall - https://github.com/timhall/Excel-REST ' ' Interact with REST web services from Excel diff --git a/src/RestHelpers.bas b/src/RestHelpers.bas index 0c5eaabc..68fcca24 100644 --- a/src/RestHelpers.bas +++ b/src/RestHelpers.bas @@ -1,6 +1,6 @@ Attribute VB_Name = "RestHelpers" '' -' RestHelpers v3.0.4 +' RestHelpers v3.0.5 ' (c) Tim Hall - https://github.com/timhall/Excel-REST ' ' Common helpers RestClient @@ -38,7 +38,7 @@ Attribute VB_Name = "RestHelpers" #End If -Private Const UserAgent As String = "Excel Client v3.0.4 (https://github.com/timhall/Excel-REST)" +Private Const UserAgent As String = "Excel Client v3.0.5 (https://github.com/timhall/Excel-REST)" Private DocumentHelper As Object Private ElHelper As Object diff --git a/src/RestRequest.cls b/src/RestRequest.cls index 761140c0..f8880528 100644 --- a/src/RestRequest.cls +++ b/src/RestRequest.cls @@ -8,7 +8,7 @@ Attribute VB_Creatable = False Attribute VB_PredeclaredId = False Attribute VB_Exposed = True '' -' RestRequest v3.0.4 +' RestRequest v3.0.5 ' (c) Tim Hall - https://github.com/timhall/Excel-REST ' ' Create a request for use with a rest client diff --git a/src/RestResponse.cls b/src/RestResponse.cls index ea682f12..fa67815d 100644 --- a/src/RestResponse.cls +++ b/src/RestResponse.cls @@ -8,7 +8,7 @@ Attribute VB_Creatable = False Attribute VB_PredeclaredId = False Attribute VB_Exposed = True '' -' RestResponse v3.0.4 +' RestResponse v3.0.5 ' (c) Tim Hall - https://github.com/timhall/Excel-REST ' ' Wrapper for http responses