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

+1-1
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

+1-1
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

+5-5
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

+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.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

+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.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

+5-5
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
2323
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)

src/WebHelpers.bas

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Attribute VB_Name = "WebHelpers"
22
''
3-
' WebHelpers v4.0.0-beta.5
3+
' WebHelpers v4.0.0-rc.1
44
' (c) Tim Hall - https://github.com/VBA-tools/VBA-Web
55
'
66
' Common helpers VBA-Web
@@ -28,6 +28,8 @@ Attribute VB_Name = "WebHelpers"
2828
' 7. Mac
2929
' 8. Cryptography
3030
' 9. Converters
31+
' VBA-JSON
32+
' VBA-UTC
3133
' --------------------------------------------- '
3234

3335
' === VBA-UTC Headers
@@ -97,7 +99,7 @@ Private Declare Function web_fread Lib "libc.dylib" Alias "fread" (ByVal outStr
9799
Private Declare Function web_feof Lib "libc.dylib" Alias "feof" (ByVal File As Long) As Long
98100
#End If
99101

100-
Public Const WebUserAgent As String = "VBA-Web v4.0.0-beta.5 (https://github.com/VBA-tools/VBA-Web)"
102+
Public Const WebUserAgent As String = "VBA-Web v4.0.0-rc.1 (https://github.com/VBA-tools/VBA-Web)"
101103

102104
' @internal
103105
Public Type web_ShellResult

src/WebRequest.cls

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ Attribute VB_Creatable = False
88
Attribute VB_PredeclaredId = False
99
Attribute VB_Exposed = True
1010
''
11-
' WebRequest v4.0.0-beta.5
11+
' WebRequest v4.0.0-rc.1
1212
' (c) Tim Hall - https://github.com/VBA-tools/VBA-Web
1313
'
1414
' Create a request for use with a WebClient
1515
'
1616
' Errors:
17-
' 11020 / 80042b0c - Cannot add body parameter to non-Dictionary
17+
' 11020 / 80042b0c / -2147210484 - Cannot add body parameter to non-Dictionary
1818
'
1919
2020
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)

src/WebResponse.cls

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ Attribute VB_Creatable = False
88
Attribute VB_PredeclaredId = False
99
Attribute VB_Exposed = True
1010
''
11-
' WebResponse v4.0.0-beta.5
11+
' WebResponse v4.0.0-rc.1
1212
' (c) Tim Hall - https://github.com/VBA-tools/VBA-Web
1313
'
1414
' Wrapper for http/cURL responses
1515
'
1616
' Errors:
17-
' 11030 / 80042b16 - Error creating from http
18-
' 11031 / 80042b17 - Error creating from cURL
19-
' 11032 / 80042b18 - Error extracting headers
17+
' 11030 / 80042b16 / -2147210474 - Error creating from http
18+
' 11031 / 80042b17 / -2147210473 - Error creating from cURL
19+
' 11032 / 80042b18 / -2147210472 - Error extracting headers
2020
'
2121
2222
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)

0 commit comments

Comments
 (0)