Skip to content

Commit 29f450c

Browse files
committed
v4.0.14
1 parent 40bef89 commit 29f450c

14 files changed

+10
-9
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ Major Changes:
2222
- __4.0.11__ Fix extract header bug in `DigestAuthenticator`
2323
- __4.0.12__ Fix revocation check bug for `Insecure`, `Split` bug in credentials, and fix Example workbook
2424
- __4.0.13__ Fix 100 Continue bug for Mac, fix regional issues for url-encoded numbers and dates
25+
- __4.0.14__ Fix cached Body issue with AddBodyParameter
2526

2627
Breaking Changes:
2728

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

852 Bytes
Binary file not shown.

VBA-Web - Installer.xlsm

-2.13 KB
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.13 Development"
98+
PrintLn "VBA-Web v4.0.14 Development"
9999

100100
ExcelWasOpen = OpenExcel(Excel)
101101

examples/VBA-Web - Example.xlsm

-133 KB
Binary file not shown.

specs/VBA-Web - Specs - Async.xlsm

9.73 KB
Binary file not shown.

specs/VBA-Web - Specs.xlsm

-107 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.13
11+
' IWebAuthenticator v4.0.14
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.13
11+
' WebAsyncWrapper v4.0.14
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)