Skip to content

Commit 6e2beb5

Browse files
committed
v2.2.0
1 parent 5b7b7fb commit 6e2beb5

10 files changed

+11
-7
lines changed

Excel-REST - Blank.xlsm

-20.3 KB
Binary file not shown.

README.md

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

102102
### Release Notes
103103

104+
#### 2.2.0
105+
106+
- Add cookies support with `Request.AddCookie(key, value)` and `Response.Cookies`
107+
104108
#### 2.1.0
105109

106110
- Add Microsoft Scripting Runtime dependency (for Dictionary support)

examples/Excel-REST - Example.xlsm

5.06 KB
Binary file not shown.

specs/Excel-REST - Specs.xlsm

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

0 commit comments

Comments
 (0)