Skip to content

Commit 8faf826

Browse files
committed
v4.0.5
1 parent 64111d5 commit 8faf826

14 files changed

+10
-9
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Major Changes:
1313
- __4.0.2__ Add `Base64Decode`
1414
- __4.0.3__ Fix out-of-date workbooks
1515
- __4.0.4__ Move `Application.OnTime` to `WebAsyncWrapper` and add dislaimer that it's Excel-only
16+
- __4.0.5__ Fix incorrect regional guard in ParseNumber in VBA-JSON (upgrade to v1.0.1)
1617

1718
Breaking Changes:
1819

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

82 Bytes
Binary file not shown.

VBA-Web - Installer.xlsm

23 Bytes
Binary file not shown.

build/dev.vbs

+1-1
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.4 Development"
98+
PrintLn "VBA-Web v4.0.5 Development"
9999

100100
ExcelWasOpen = OpenExcel(Excel)
101101

examples/VBA-Web - Example.xlsm

-968 Bytes
Binary file not shown.

specs/VBA-Web - Specs - Async.xlsm

-1.49 KB
Binary file not shown.

specs/VBA-Web - Specs.xlsm

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

216-
Public Const WebUserAgent As String = "VBA-Web v4.0.4 (https://github.com/VBA-tools/VBA-Web)"
216+
Public Const WebUserAgent As String = "VBA-Web v4.0.5 (https://github.com/VBA-tools/VBA-Web)"
217217

218218
' @internal
219219
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.4
11+
' WebRequest v4.0.5
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.4
11+
' WebResponse v4.0.5
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)