Skip to content

Commit 622a9cc

Browse files
committed
v2.1.3
1 parent db6b29a commit 622a9cc

File tree

10 files changed

+16
-15
lines changed

10 files changed

+16
-15
lines changed

Excel-REST - Blank.xlsm

1.66 KB
Binary file not shown.

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -101,23 +101,24 @@ For more details, check out the [Wiki](https://github.com/timhall/Excel-REST/wik
101101

102102
### Release Notes
103103

104-
#### v2.1.0
104+
#### 2.1.0
105105

106106
- Add Microsoft Scripting Runtime dependency (for Dictionary support)
107107
- Add `RestClient.SetProxy` for use in proxy environments
108-
- __v2.1.1__ Use `Val` for number parsing in locale-dependent settings
109-
- __v2.1.2__ Add raw binary `Body` to `RestResponse` for handling files (thanks [@berkus](https://github.com/berkus))
108+
- __2.1.1__ Use `Val` for number parsing in locale-dependent settings
109+
- __2.1.2__ Add raw binary `Body` to `RestResponse` for handling files (thanks [@berkus](https://github.com/berkus))
110+
- __2.1.3__ Bugfixes and refactor
110111

111-
#### v2.0.0
112+
#### 2.0.0
112113

113114
- Remove JSONLib dependency (merged with RestHelpers)
114115
- Add RestClientBase for future use with extension for single-client applications
115116
- Add build scripts for import/export
116117
- New specs and bugfixes
117-
- __v2.0.1__ Handle duplicate keys when parsing json
118-
- __v2.0.2__ Add Content-Length header and 408 status code for timeout
118+
- __2.0.1__ Handle duplicate keys when parsing json
119+
- __2.0.2__ Add Content-Length header and 408 status code for timeout
119120

120-
#### v1.1.0
121+
#### 1.1.0
121122

122123
Major Changes:
123124

@@ -132,7 +133,7 @@ Bugfixes:
132133
- Only add "?" for querystring if querystring will be created and "?" isn't present
133134
- Only put parameters in body if there are parameters
134135

135-
#### v0.2
136+
#### 0.2
136137

137138
- Add async support
138139

examples/Excel-REST - Example.xlsm

1.27 KB
Binary file not shown.

specs/Excel-REST - Specs.xlsm

-27.9 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.1.2
11+
' IAuthenticator v2.1.3
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.1.2
11+
' RestClient v2.1.3
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.1.2
3+
' RestClientBase v2.1.3
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.1.2
3+
' RestHelpers v2.1.3
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 v2.1.2 (https://github.com/timhall/Excel-REST)"
41+
Private Const UserAgent As String = "Excel Client v2.1.3 (https://github.com/timhall/Excel-REST)"
4242

4343
' Moved to top from JSONLib
4444
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.1.2
11+
' RestRequest v2.1.3
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.1.2
11+
' RestResponse v2.1.3
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Wrapper for http responses

0 commit comments

Comments
 (0)