Skip to content

Commit e8203f6

Browse files
committed
v2.0.0
1 parent 13edda5 commit e8203f6

9 files changed

+8
-8
lines changed

Excel-REST - Blank.xlsm

454 Bytes
Binary file not shown.

examples/Excel-REST - Example.xlsm

-3.09 KB
Binary file not shown.

specs/Excel-REST - Specs.xlsm

-7.33 KB
Binary file not shown.

src/IAuthenticator.cls

+1-1
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 v1.1.0
11+
' IAuthenticator v2.0.0
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Interface for creating authenticators for rest client

src/RestClient.cls

+2-2
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 v1.1.0
11+
' RestClient v2.0.0
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Interact with REST web services from Excel
@@ -19,7 +19,7 @@ Attribute VB_Exposed = True
1919
' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ '
2020
Option Explicit
2121

22-
Private Const UserAgent As String = "Excel Client v1.1.0 (https://github.com/timhall/Excel-REST)"
22+
Private Const UserAgent As String = "Excel Client v2.0.0 (https://github.com/timhall/Excel-REST)"
2323
Private Const DefaultTimeoutMS As Integer = 5000
2424

2525

src/RestClientBase.bas

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Attribute VB_Name = "RestClientBase"
22
''
3-
' RestClientBase v1.1.0
3+
' RestClientBase v2.0.0
44
' (c) Tim Hall - https://github.com/timhall/Excel-REST
55
'
66
' Extendable RestClientBase for developing custom client classes
@@ -15,7 +15,7 @@ Attribute VB_Name = "RestClientBase"
1515
' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ '
1616
Option Explicit
1717

18-
Private Const UserAgent As String = "Excel Client v1.1.0 (https://github.com/timhall/Excel-REST)"
18+
Private Const UserAgent As String = "Excel Client v2.0.0 (https://github.com/timhall/Excel-REST)"
1919
Private Const TimeoutMS As Integer = 5000
2020
Private Initialized As Boolean
2121

src/RestHelpers.bas

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Attribute VB_Name = "RestHelpers"
22
''
3-
' RestHelpers v1.1.0
3+
' RestHelpers v2.0.0
44
' (c) Tim Hall - https://github.com/timhall/Excel-REST
55
'
66
' Common helpers RestClient

src/RestRequest.cls

+1-1
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 v1.1.0
11+
' RestRequest v2.0.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

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

0 commit comments

Comments
 (0)