Skip to content

Commit 25d0a0c

Browse files
committed
v4.1.6
1 parent eb6495e commit 25d0a0c

12 files changed

+8
-8
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ VBA-Web (formerly Excel-REST) makes working with complex webservices and APIs ea
1010
Getting started
1111
---------------
1212

13-
- Download the [latest release (v4.1.5)](https://github.com/VBA-tools/VBA-Web/releases)
13+
- Download the [latest release (v4.1.6)](https://github.com/VBA-tools/VBA-Web/releases)
1414
- To install/upgrade in an existing file, use `VBA-Web - Installer.xlsm`
1515
- To start from scratch in Excel, `VBA-Web - Blank.xlsm` has everything setup and ready to go
1616

VBA-Web - Blank.xlsm

55.4 KB
Binary file not shown.

VBA-Web - Installer.xlsm

108 Bytes
Binary file not shown.

examples/VBA-Web - Example.xlsm

148 KB
Binary file not shown.

specs/VBA-Web - Specs - Async.xlsm

-1.59 KB
Binary file not shown.

specs/VBA-Web - Specs.xlsm

-2.82 KB
Binary file not shown.

src/IWebAuthenticator.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-
' IWebAuthenticator v4.1.5
11+
' IWebAuthenticator v4.1.6
1212
' (c) Tim Hall - https://github.com/VBA-tools/VBA-Web
1313
'
1414
' Interface for creating authenticators for rest client

src/WebAsyncWrapper.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-
' WebAsyncWrapper v4.1.5
11+
' WebAsyncWrapper v4.1.6
1212
' (c) Tim Hall - https://github.com/VBA-tools/VBA-Web
1313
'
1414
' Wrapper WebClient and WebRequest that enables callback-style async requests

src/WebClient.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-
' WebClient v4.1.5
11+
' WebClient v4.1.6
1212
' (c) Tim Hall - https://github.com/VBA-tools/VBA-Web
1313
'
1414
' `WebClient` executes requests and handles response and is responsible for functionality shared between requests,

src/WebHelpers.bas

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Attribute VB_Name = "WebHelpers"
22
''
3-
' WebHelpers v4.1.5
3+
' WebHelpers v4.1.6
44
' (c) Tim Hall - https://github.com/VBA-tools/VBA-Web
55
'
66
' Contains general-purpose helpers that are used throughout VBA-Web. Includes:
@@ -268,7 +268,7 @@ Private Declare Function web_feof Lib "libc.dylib" Alias "feof" (ByVal web_File
268268
#End If
269269
#End If
270270

271-
Public Const WebUserAgent As String = "VBA-Web v4.1.5 (https://github.com/VBA-tools/VBA-Web)"
271+
Public Const WebUserAgent As String = "VBA-Web v4.1.6 (https://github.com/VBA-tools/VBA-Web)"
272272

273273
' @internal
274274
Public Type ShellResult

src/WebRequest.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-
' WebRequest v4.1.5
11+
' WebRequest v4.1.6
1212
' (c) Tim Hall - https://github.com/VBA-tools/VBA-Web
1313
'
1414
' `WebRequest` is used to create detailed requests

src/WebResponse.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-
' WebResponse v4.1.5
11+
' WebResponse v4.1.6
1212
' (c) Tim Hall - https://github.com/VBA-tools/VBA-Web
1313
'
1414
' Wrapper for http/cURL responses that includes parsed Data based on WebRequest.ResponseFormat.

0 commit comments

Comments
 (0)