Skip to content

Commit 19a0040

Browse files
committed
v3.0.7
1 parent 77c5265 commit 19a0040

File tree

10 files changed

+11
-10
lines changed

10 files changed

+11
-10
lines changed

Excel-REST - Blank.xlsm

866 Bytes
Binary file not shown.

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ It seems like everything has a REST webservice these days and there is no reason
66
Getting started
77
---------------
88

9-
1. Download the [latest release (v3.0.6)](https://github.com/timhall/Excel-REST/releases)
9+
1. Download the [latest release (v3.0.7)](https://github.com/timhall/Excel-REST/releases)
1010
2. `Excel-REST - Blank.xlsm` has everything setup and ready to go.
1111

1212
For more details see the [Wiki](https://github.com/timhall/Excel-REST/wiki)
@@ -181,6 +181,7 @@ For more details, check out the [Wiki](https://github.com/timhall/Excel-REST/wik
181181
- __3.0.4__ Fix formatting of parameters with spaces for OAuth1 and add logging
182182
- __3.0.5__ Allow Array and Collection for Body in `Request.AddBody` and `Client.PostJSON`
183183
- __3.0.6__ Convert Empty to `null` for json
184+
- __3.0.7__ Add `install.bat` script for easy installation and upgrade
184185

185186
#### 2.3.0
186187

build/install.vbs

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

58-
Print "Welcome to Excel-REST v3.0.6, let's get started!"
58+
Print "Welcome to Excel-REST v3.0.7, let's get started!"
5959

6060
ExcelWasOpen = OpenExcel(Excel)
6161

@@ -95,7 +95,7 @@ Sub Install
9595
ShouldUpgrade = Input(vbNewLine & "Excel-REST appears to already be installed." & vbNewLine & vbNewLine & _
9696
"Warning: The currently installed Excel-REST files will be removed" & vbNewLine & _
9797
"and any previously made changes to those files will be lost" & vbNewLine & vbNewLine & _
98-
"Would you like to upgrade to v3.0.6? [yes/no]")
98+
"Would you like to upgrade to v3.0.7? [yes/no]")
9999

100100
If UCase(ShouldUpgrade) = "YES" Then
101101
Success = InstallModules

examples/Excel-REST - Example.xlsm

-581 Bytes
Binary file not shown.

specs/Excel-REST - Specs.xlsm

-3.95 KB
Binary file not shown.

src/IAuthenticator.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-
' IAuthenticator v3.0.6
11+
' IAuthenticator v3.0.7
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Interface for creating authenticators for rest client

src/RestClient.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-
' RestClient v3.0.6
11+
' RestClient v3.0.7
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Interact with REST web services from Excel

src/RestHelpers.bas

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Attribute VB_Name = "RestHelpers"
22
''
3-
' RestHelpers v3.0.6
3+
' RestHelpers v3.0.7
44
' (c) Tim Hall - https://github.com/timhall/Excel-REST
55
'
66
' Common helpers RestClient
@@ -38,7 +38,7 @@ Attribute VB_Name = "RestHelpers"
3838

3939
#End If
4040

41-
Private Const UserAgent As String = "Excel Client v3.0.6 (https://github.com/timhall/Excel-REST)"
41+
Private Const UserAgent As String = "Excel Client v3.0.7 (https://github.com/timhall/Excel-REST)"
4242
Private DocumentHelper As Object
4343
Private ElHelper As Object
4444

src/RestRequest.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-
' RestRequest v3.0.6
11+
' RestRequest v3.0.7
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Create a request for use with a rest client

src/RestResponse.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-
' RestResponse v3.0.6
11+
' RestResponse v3.0.7
1212
' (c) Tim Hall - https://github.com/timhall/Excel-REST
1313
'
1414
' Wrapper for http responses

0 commit comments

Comments
 (0)