Skip to content

Commit 674fe34

Browse files
committed
v3.1.2
1 parent c75ab6f commit 674fe34

11 files changed

+14
-13
lines changed

Excel-REST - Blank.xlsm

1.58 KB
Binary file not shown.

README.md

+2-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 (v3.1.1)](https://github.com/timhall/Excel-REST/releases)
9+
- Download the [latest release (v3.1.2)](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

@@ -178,6 +178,7 @@ For more details, check out the [Wiki](https://github.com/timhall/Excel-REST/wik
178178
- Add `LogRequest` and `LogResponse` for better logging detail (enable with `RestHelpers.EnableLogging = True`)
179179
- Allow headers and content-type to be set in authenticator `BeforeExecute`
180180
- __3.1.1__ Fix importing class incorrectly as module bug
181+
- __3.1.2__ Add XML and plain text formats
181182

182183
#### 3.0.0
183184

build/dev.vbs

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Main
7676
Sub Main()
7777
' On Error Resume Next
7878

79-
PrintLn "Excel-REST v3.1.1 Development"
79+
PrintLn "Excel-REST v3.1.2 Development"
8080

8181
ExcelWasOpen = OpenExcel(Excel)
8282

build/install.vbs

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
''
2-
' Install v3.1.1
2+
' Install v3.1.2
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-
PrintLn "Welcome to Excel-REST v3.1.1, let's get started!"
58+
PrintLn "Welcome to Excel-REST v3.1.2, let's get started!"
5959

6060
ExcelWasOpen = OpenExcel(Excel)
6161

@@ -107,9 +107,9 @@ Sub Execute()
107107
Dim InstallMessage
108108
If AlreadyInstalled(Workbook) Then
109109
Message = Message & "(It appears Excel-REST is already installed)" & vbNewLine
110-
Message = Message & "- upgrade - Upgrade to Excel-REST v3.1.1" & vbNewLine
110+
Message = Message & "- upgrade - Upgrade to Excel-REST v3.1.2" & vbNewLine
111111
Else
112-
Message = Message & "- install - Install Excel-REST v3.1.1" & vbNewLine
112+
Message = Message & "- install - Install Excel-REST v3.1.2" & vbNewLine
113113
End If
114114

115115
Message = Message & "- auth - Install authenticator"
@@ -131,7 +131,7 @@ Sub Execute()
131131
ShouldUpgrade = Input(vbNewLine & _
132132
"Warning: The currently installed Excel-REST files will be removed" & vbNewLine & _
133133
"and any previously made changes to those files will be lost" & vbNewLine & vbNewLine & _
134-
"Would you like to upgrade to v3.1.1? [yes/no] <")
134+
"Would you like to upgrade to v3.1.2? [yes/no] <")
135135

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

examples/Excel-REST - Example.xlsm

2.14 KB
Binary file not shown.

specs/Excel-REST - Specs.xlsm

5.1 KB
Binary file not shown.

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

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

src/RestHelpers.bas

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Attribute VB_Name = "RestHelpers"
22
''
3-
' RestHelpers v3.1.1
3+
' RestHelpers v3.1.2
44
' (c) Tim Hall - https://github.com/timhall/Excel-REST
55
'
66
' Common helpers RestClient
@@ -50,7 +50,7 @@ Attribute VB_Name = "RestHelpers"
5050

5151
#End If
5252

53-
Private Const UserAgent As String = "Excel Client v3.1.1 (https://github.com/timhall/Excel-REST)"
53+
Private Const UserAgent As String = "Excel Client v3.1.2 (https://github.com/timhall/Excel-REST)"
5454
Private DocumentHelper As Object
5555
Private ElHelper As Object
5656

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

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

0 commit comments

Comments
 (0)