Skip to content

Commit 0a00535

Browse files
committed
v4.0.0-beta.5
1 parent 91b53ff commit 0a00535

13 files changed

+15
-16
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Excel-REST makes working with complex webservices and APIs easy with Excel. It i
66
Getting started
77
---------------
88

9-
- Download the [latest release (v4.0.0-beta.3)](https://github.com/timhall/Excel-REST/releases)
9+
- Download the [latest release (v4.0.0-beta.5)](https://github.com/timhall/Excel-REST/releases)
1010
- To install/upgrade in an existing file, run `install.bat` to walk through installation.
1111
- To start from scratch, `Excel-REST - Blank.xlsm` has everything setup and ready to go.
1212

VBA-Web - Blank.xlsm

2.31 KB
Binary file not shown.

build/dev.vbs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Dim BlankWorkbookPath
3434
Dim ExampleWorkbookPath
3535
Dim SpecsWorkbookPath
3636
Dim AsyncSpecsWorkbookPath
37-
BlankWorkbookPath = "./VBA-WEb - Blank.xlsm"
37+
BlankWorkbookPath = "./VBA-Web - Blank.xlsm"
3838
ExampleWorkbookPath = "./examples/VBA-Web - Example.xlsm"
3939
SpecsWorkbookPath = "./specs/VBA-Web - Specs.xlsm"
4040
AsyncSpecsWorkbookPath = "./specs/VBA-Web - Specs - Async.xlsm"
@@ -91,7 +91,7 @@ Main
9191
Sub Main()
9292
On Error Resume Next
9393

94-
PrintLn "VBA-Web v4.0.0-beta.3 Development"
94+
PrintLn "VBA-Web v4.0.0-beta.5 Development"
9595

9696
ExcelWasOpen = OpenExcel(Excel)
9797

@@ -135,7 +135,6 @@ Sub Development
135135
Execute "import", "specs", "specs"
136136
Execute "import", "auth-specs", "specs"
137137
Execute "import", "async", "async-specs"
138-
Execute "import", "specs", "async-specs"
139138
Execute "import", "async-specs", "async-specs"
140139
ElseIf UBound(Parts) < 3 Or (UCase(Parts(0)) <> "IMPORT" And UCase(Parts(0)) <> "EXPORT") Then
141140
PrintLn vbNewLine & "Error: Unrecognized action"

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-beta.3
2+
' Install v4.0.0-beta.5
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-beta.3, let's get started!"
57+
PrintLn "Welcome to Excel-REST v4.0.0-beta.5, 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-beta.3" & vbNewLine
109+
Message = Message & "- upgrade - Upgrade to Excel-REST v4.0.0-beta.5" & vbNewLine
110110
Else
111-
Message = Message & "- install - Install Excel-REST v4.0.0-beta.3" & vbNewLine
111+
Message = Message & "- install - Install Excel-REST v4.0.0-beta.5" & 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-beta.3? [yes/no] <")
133+
"Would you like to upgrade to v4.0.0-beta.5? [yes/no] <")
134134

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

examples/VBA-Web - Example.xlsm

14.6 KB
Binary file not shown.

specs/VBA-Web - Specs - Async.xlsm

36.6 KB
Binary file not shown.

specs/VBA-Web - Specs.xlsm

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

0 commit comments

Comments
 (0)