Skip to content

Commit 81cf9c6

Browse files
committed
v2.0.2
1 parent 0068c2b commit 81cf9c6

10 files changed

+8
-7
lines changed

Excel-REST - Blank.xlsm

90 Bytes
Binary file not shown.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ For more details, check out the [Wiki](https://github.com/timhall/Excel-REST/wik
107107
- Add build scripts for import/export
108108
- New specs and bugfixes
109109
- __v2.0.1__ Handle duplicate keys when parsing json
110+
- __v2.0.2__ Add Content-Length header and 408 status code for timeout
110111

111112
#### v1.1.0
112113

examples/Excel-REST - Example.xlsm

1.02 KB
Binary file not shown.

specs/Excel-REST - Specs.xlsm

-1.29 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 v2.0.1
11+
' IAuthenticator v2.0.2
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 v2.0.1
11+
' RestClient v2.0.2
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Interact with REST web services from Excel

src/RestClientBase.bas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Attribute VB_Name = "RestClientBase"
22
''
3-
' RestClientBase v2.0.1
3+
' RestClientBase v2.0.2
44
' (c) Tim Hall - https://github.com/timhall/Excel-REST
55
'
66
' Extendable RestClientBase for developing custom client classes

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 v2.0.1
3+
' RestHelpers v2.0.2
44
' (c) Tim Hall - https://github.com/timhall/Excel-REST
55
'
66
' Common helpers RestClient
@@ -39,7 +39,7 @@ Attribute VB_Name = "RestHelpers"
3939

4040
#End If
4141

42-
Private Const UserAgent As String = "Excel Client v2.0.1 (https://github.com/timhall/Excel-REST)"
42+
Private Const UserAgent As String = "Excel Client v2.0.2 (https://github.com/timhall/Excel-REST)"
4343

4444
' Moved to top from JSONLib
4545
Private Const INVALID_JSON As Long = 1

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

0 commit comments

Comments
 (0)