Skip to content

Commit 59c794e

Browse files
committed
v4.0.21
1 parent cea0631 commit 59c794e

13 files changed

+9
-8
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ Major Changes:
2929
- __4.0.18__ Add `VBA.Randomize` to `CreateNonce` and add `TodoistAuthenticator`
3030
- __4.0.19__ Fix installer and update VBA-JSON to v1.0.3
3131
- __4.0.20__ Update VBA-JSON to v2.0.1 (Note: Breaking change in VBA-JSON, Solidus is no longer escaped by default)
32+
- __4.0.21__ Fix `vbCrLf` issue in Excel for Mac 2016 and namespace internal method calls
3233

3334
Breaking Changes:
3435

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ VBA-Web (formerly Excel-REST) makes working with complex webservices and APIs ea
66
Getting started
77
---------------
88

9-
- Download the [latest release (v4.0.20)](https://github.com/VBA-tools/VBA-Web/releases)
9+
- Download the [latest release (v4.0.21)](https://github.com/VBA-tools/VBA-Web/releases)
1010
- To install/upgrade in an existing file, use `VBA-Web - Installer.xlsm`
1111
- To start from scratch in Excel, `VBA-Web - Blank.xlsm` has everything setup and ready to go
1212

VBA-Web - Blank.xlsm

56.8 KB
Binary file not shown.

VBA-Web - Installer.xlsm

-1.67 KB
Binary file not shown.

examples/VBA-Web - Example.xlsm

-286 Bytes
Binary file not shown.

specs/VBA-Web - Specs - Async.xlsm

-5.37 KB
Binary file not shown.

specs/VBA-Web - Specs.xlsm

1.74 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.0.20
11+
' IWebAuthenticator v4.0.21
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.0.20
11+
' WebAsyncWrapper v4.0.21
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.0.20
11+
' WebClient v4.0.21
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.0.20
3+
' WebHelpers v4.0.21
44
' (c) Tim Hall - https://github.com/VBA-tools/VBA-Web
55
'
66
' Contains general-purpose helpers that are used throughout VBA-Web. Includes:
@@ -247,7 +247,7 @@ Private Declare Function web_fread Lib "libc.dylib" Alias "fread" (ByVal outStr
247247
Private Declare Function web_feof Lib "libc.dylib" Alias "feof" (ByVal File As Long) As Long
248248
#End If
249249

250-
Public Const WebUserAgent As String = "VBA-Web v4.0.20 (https://github.com/VBA-tools/VBA-Web)"
250+
Public Const WebUserAgent As String = "VBA-Web v4.0.21 (https://github.com/VBA-tools/VBA-Web)"
251251

252252
' @internal
253253
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.0.20
11+
' WebRequest v4.0.21
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.0.20
11+
' WebResponse v4.0.21
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)