Skip to content

Commit 921a0fc

Browse files
committed
v4.0.0
1 parent 71c2613 commit 921a0fc

12 files changed

+9
-9
lines changed

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

44.8 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.0-rc.6 Development"
98+
PrintLn "VBA-Web v4.0.0 Development"
9999

100100
ExcelWasOpen = OpenExcel(Excel)
101101

examples/VBA-Web - Example.xlsm

-6.4 KB
Binary file not shown.

specs/VBA-Web - Specs - Async.xlsm

57.6 KB
Binary file not shown.

specs/VBA-Web - Specs.xlsm

86.9 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.0-rc.6
11+
' IWebAuthenticator v4.0.0
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.0-rc.6
11+
' WebAsyncWrapper v4.0.0
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.0-rc.6
11+
' WebClient v4.0.0
1212
' (c) Tim Hall - https://github.com/VBA-tools/VBA-Web
1313
'
1414
' Execute requests and handle responses

src/WebHelpers.bas

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Attribute VB_Name = "WebHelpers"
22
''
3-
' WebHelpers v4.0.0-rc.6
3+
' WebHelpers v4.0.0
44
' (c) Tim Hall - https://github.com/VBA-tools/VBA-Web
55
'
66
' Common helpers VBA-Web
@@ -203,7 +203,7 @@ Private Declare Function web_fread Lib "libc.dylib" Alias "fread" (ByVal outStr
203203
Private Declare Function web_feof Lib "libc.dylib" Alias "feof" (ByVal File As Long) As Long
204204
#End If
205205

206-
Public Const WebUserAgent As String = "VBA-Web v4.0.0-rc.6 (https://github.com/VBA-tools/VBA-Web)"
206+
Public Const WebUserAgent As String = "VBA-Web v4.0.0 (https://github.com/VBA-tools/VBA-Web)"
207207

208208
' @internal
209209
Public Type ShellResult

0 commit comments

Comments
 (0)