Skip to content

Commit ddd933a

Browse files
committed
v4.0.9
1 parent 0c3e8cd commit ddd933a

13 files changed

+9
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Major Changes:
1717
- __4.0.6__ Resolve 64-bit compilation issues in VBA-JSON
1818
- __4.0.7__ Handle resolve error when offline as timeout and add `EnableCustomFormatting` flag for `Application.Run` issues
1919
- __4.0.8__ Fix a critical bug that caused Excel to crash if an error was thrown with AutoProxy
20+
- __4.0.9__ Add VBA-Dictionary to installer and fix `AddBodyParameter` bug in 64-bit Excel
2021

2122
Breaking Changes:
2223

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.8)](https://github.com/VBA-tools/VBA-Web/releases)
9+
- Download the [latest release (v4.0.9)](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

-17.6 KB
Binary file not shown.

VBA-Web - Installer.xlsm

-602 Bytes
Binary file not shown.

examples/VBA-Web - Example.xlsm

74.8 KB
Binary file not shown.

specs/VBA-Web - Specs - Async.xlsm

-117 KB
Binary file not shown.

specs/VBA-Web - Specs.xlsm

-37.5 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.8
11+
' IWebAuthenticator v4.0.9
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.8
11+
' WebAsyncWrapper v4.0.9
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

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-
' WebClient v4.0.8
11+
' WebClient v4.0.9
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,

0 commit comments

Comments
 (0)