Skip to content

Commit

Permalink
v2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
timhall committed Feb 11, 2014
1 parent e0d9ec3 commit 4ee85ea
Show file tree
Hide file tree
Showing 10 changed files with 9 additions and 8 deletions.
Binary file modified Excel-REST - Blank.xlsm
Binary file not shown.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ For more details, check out the [Wiki](https://github.com/timhall/Excel-REST/wik
- Add Microsoft Scripting Runtime dependency (for Dictionary support)
- Add `RestClient.SetProxy` for use in proxy environments
- __v2.1.1__ Use `Val` for number parsing in locale-dependent settings
- __v2.1.2__ Add raw binary `Body` to `RestResponse` for handling files (thanks [@berkus](https://github.com/berkus))

#### v2.0.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 v2.1.1
' IAuthenticator v2.1.2
' (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 v2.1.1
' RestClient v2.1.2
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Interact with REST web services from Excel
Expand Down
2 changes: 1 addition & 1 deletion src/RestClientBase.bas
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Attribute VB_Name = "RestClientBase"
''
' RestClientBase v2.1.1
' RestClientBase v2.1.2
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Extendable RestClientBase for developing custom client classes
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 v2.1.1
' RestHelpers v2.1.2
' (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 v2.1.1 (https://github.com/timhall/Excel-REST)"
Private Const UserAgent As String = "Excel Client v2.1.2 (https://github.com/timhall/Excel-REST)"

' Moved to top from JSONLib
Private Const INVALID_JSON As Long = 1
Expand Down
4 changes: 2 additions & 2 deletions 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 v2.1.1
' RestRequest v2.1.2
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Create a request for use with a rest client
Expand Down Expand Up @@ -352,7 +352,7 @@ End Function
' --------------------------------------------- '

Public Function CreateResponseFromHttp(Http As Object) As RestResponse
Set CreateResponseFromHttp = Me.CreateResponse(Http.Status, Http.StatusText, Http.responseBody, Http.ResponseText)
Set CreateResponseFromHttp = Me.CreateResponse(Http.Status, Http.StatusText, Http.ResponseBody, Http.ResponseText)
End Function

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

0 comments on commit 4ee85ea

Please sign in to comment.