Skip to content

Commit 479d58a

Browse files
committed
v4.0.0-rc.1
1 parent 71eb949 commit 479d58a

13 files changed

+24
-22
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.5)](https://github.com/timhall/Excel-REST/releases)
9+
- Download the [latest release (v4.0.0-rc.1)](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

5.96 KB
Binary file not shown.

build/dev.vbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ Main
9191
Sub Main()
9292
On Error Resume Next
9393

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

9696
ExcelWasOpen = OpenExcel(Excel)
9797

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

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

examples/VBA-Web - Example.xlsm

-12.9 KB
Binary file not shown.

specs/VBA-Web - Specs - Async.xlsm

5.58 KB
Binary file not shown.

specs/VBA-Web - Specs.xlsm

-124 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.5
11+
' IWebAuthenticator v4.0.0-rc.1
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-beta.5
11+
' WebAsyncWrapper v4.0.0-rc.1
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: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ Attribute VB_Creatable = False
88
Attribute VB_PredeclaredId = False
99
Attribute VB_Exposed = True
1010
''
11-
' WebClient v4.0.0-beta.5
11+
' WebClient v4.0.0-rc.1
1212
' (c) Tim Hall - https://github.com/VBA-tools/VBA-Web
1313
'
1414
' Interact with REST web services from Excel
1515
'
1616
' Errors:
17-
' 11010 / 80042b02 - cURL error in Execute
18-
' 11011 / 80042b03 - Error in Execute
19-
' 11012 / 80042b04 - Error preparing http request
20-
' 11013 / 80042b05 - Error preparing cURL request
17+
' 11010 / 80042b02 / -2147210494 - cURL error in Execute
18+
' 11011 / 80042b03 / -2147210493 - Error in Execute
19+
' 11012 / 80042b04 / -2147210492 - Error preparing http request
20+
' 11013 / 80042b05 / -2147210491 - Error preparing cURL request
2121
'
2222
' @author: tim.hall.engr@gmail.com
2323
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)

0 commit comments

Comments
 (0)