Skip to content

Commit

Permalink
v3.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
timhall committed May 14, 2014
1 parent 0a7fb40 commit 238f2f5
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 7 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.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)
Expand Down Expand Up @@ -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

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.4
' IAuthenticator v3.0.5
' (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.4
' RestClient v3.0.5
' (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.4
' RestHelpers v3.0.5
' (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.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

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.4
' RestRequest v3.0.5
' (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.4
' RestResponse v3.0.5
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Wrapper for http responses
Expand Down

0 comments on commit 238f2f5

Please sign in to comment.