Skip to content

Commit 5da1907

Browse files
committed
v4.0.0-rc.2
1 parent b618827 commit 5da1907

13 files changed

+14
-14
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ VBA-Web makes working with complex webservices and APIs easy with VBA on Windows
66
Getting started
77
---------------
88

9-
- Download the [latest release (v4.0.0-rc.1)](https://github.com/VBA-tools/VBA-Web/releases)
9+
- Download the [latest release (v4.0.0-rc.2)](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 on Excel, `VBA-Web - Blank.xlsm` has everything setup and ready to go
1212

VBA-Web - Blank.xlsm

1.99 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.1 Development"
98+
PrintLn "VBA-Web v4.0.0-rc.2 Development"
9999

100100
ExcelWasOpen = OpenExcel(Excel)
101101

build/install.vbs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
''
2-
' Install v4.0.0-rc.1
2+
' Install v4.0.0-rc.2
33
' (c) Tim Hall - https://github.com/timhall/Excel-REST
44
'
55
' Install Excel-REST and authenticators
@@ -54,7 +54,7 @@ Main
5454
Sub Main()
5555
On Error Resume Next
5656

57-
PrintLn "Welcome to Excel-REST v4.0.0-rc.1, let's get started!"
57+
PrintLn "Welcome to Excel-REST v4.0.0-rc.2, let's get started!"
5858

5959
ExcelWasOpen = OpenExcel(Excel)
6060

@@ -106,9 +106,9 @@ Sub Execute()
106106
Dim InstallMessage
107107
If AlreadyInstalled(Workbook) Then
108108
Message = Message & "(It appears Excel-REST is already installed)" & vbNewLine
109-
Message = Message & "- upgrade - Upgrade to Excel-REST v4.0.0-rc.1" & vbNewLine
109+
Message = Message & "- upgrade - Upgrade to Excel-REST v4.0.0-rc.2" & vbNewLine
110110
Else
111-
Message = Message & "- install - Install Excel-REST v4.0.0-rc.1" & vbNewLine
111+
Message = Message & "- install - Install Excel-REST v4.0.0-rc.2" & vbNewLine
112112
End If
113113

114114
Message = Message & "- auth - Install authenticator"
@@ -130,7 +130,7 @@ Sub Execute()
130130
ShouldUpgrade = Input(vbNewLine & _
131131
"Warning: The currently installed Excel-REST files will be removed" & vbNewLine & _
132132
"and any previously made changes to those files will be lost" & vbNewLine & vbNewLine & _
133-
"Would you like to upgrade to v4.0.0-rc.1? [yes/no] <")
133+
"Would you like to upgrade to v4.0.0-rc.2? [yes/no] <")
134134

135135
If Left(UCase(ShouldUpgrade), 1) = "Y" Then
136136
InstallModules

examples/VBA-Web - Example.xlsm

-13.5 KB
Binary file not shown.

specs/VBA-Web - Specs - Async.xlsm

36.4 KB
Binary file not shown.

specs/VBA-Web - Specs.xlsm

58.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.1
11+
' IWebAuthenticator v4.0.0-rc.2
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.1
11+
' WebAsyncWrapper v4.0.0-rc.2
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
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.1
11+
' WebClient v4.0.0-rc.2
1212
' (c) Tim Hall - https://github.com/VBA-tools/VBA-Web
1313
'
1414
' Interact with REST web services from Excel

0 commit comments

Comments
 (0)