Skip to content

Commit fe5e012

Browse files
committed
v4.0.7
1 parent 7e3d0a4 commit fe5e012

14 files changed

+10
-9
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Major Changes:
1515
- __4.0.4__ Move `Application.OnTime` to `WebAsyncWrapper` and add dislaimer that it's Excel-only
1616
- __4.0.5__ Fix incorrect regional guard in ParseNumber in VBA-JSON (upgrade to v1.0.1)
1717
- __4.0.6__ Resolve 64-bit compilation issues in VBA-JSON
18+
- __4.0.7__ Handle resolve error when offline as timeout and add `EnableCustomFormatting` flag for `Application.Run` issues
1819

1920
Breaking Changes:
2021

README.md

Lines changed: 1 addition & 1 deletion
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.6)](https://github.com/VBA-tools/VBA-Web/releases)
9+
- Download the [latest release (v4.0.7)](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

2.02 KB
Binary file not shown.

VBA-Web - Installer.xlsm

3 Bytes
Binary file not shown.

build/dev.vbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Main
9595
Sub Main()
9696
On Error Resume Next
9797

98-
PrintLn "VBA-Web v4.0.6 Development"
98+
PrintLn "VBA-Web v4.0.7 Development"
9999

100100
ExcelWasOpen = OpenExcel(Excel)
101101

examples/VBA-Web - Example.xlsm

1.35 KB
Binary file not shown.

specs/VBA-Web - Specs - Async.xlsm

689 Bytes
Binary file not shown.

specs/VBA-Web - Specs.xlsm

4.09 KB
Binary file not shown.

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

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

0 commit comments

Comments
 (0)