Skip to content

Commit ae2b3b3

Browse files
committed
v2.1.1
1 parent af11243 commit ae2b3b3

10 files changed

+8
-7
lines changed

Excel-REST - Blank.xlsm

472 Bytes
Binary file not shown.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ For more details, check out the [Wiki](https://github.com/timhall/Excel-REST/wik
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
108109

109110
#### v2.0.0
110111

examples/Excel-REST - Example.xlsm

300 Bytes
Binary file not shown.

specs/Excel-REST - Specs.xlsm

-362 Bytes
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.0
11+
' IAuthenticator v2.1.1
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.0
11+
' RestClient v2.1.1
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.0
3+
' RestClientBase v2.1.1
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.0
3+
' RestHelpers v2.1.1
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.0 (https://github.com/timhall/Excel-REST)"
41+
Private Const UserAgent As String = "Excel Client v2.1.1 (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.0
11+
' RestRequest v2.1.1
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.0
11+
' RestResponse v2.1.1
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Wrapper for http responses

0 commit comments

Comments
 (0)