Skip to content

Commit

Permalink
v3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
timhall committed Jul 24, 2014
1 parent 54f600d commit fd24a0b
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 13 deletions.
Binary file modified Excel-REST - Blank.xlsm
Binary file not shown.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Excel-REST makes working with complex webservices and APIs easy with Excel. It i
Getting started
---------------

- Download the [latest release (v3.1.0)](https://github.com/timhall/Excel-REST/releases)
- Download the [latest release (v3.1.1)](https://github.com/timhall/Excel-REST/releases)
- To install/upgrade in an existing file, run `install.bat` to walk through installation.
- To start from scratch, `Excel-REST - Blank.xlsm` has everything setup and ready to go.

Expand Down Expand Up @@ -177,6 +177,7 @@ For more details, check out the [Wiki](https://github.com/timhall/Excel-REST/wik
- Add `Request.RequestFormat`, `Request.ResponseFormat`, and `Request.Accept` for setting separate request and response formats (e.g. form-urlencoded request with json response)
- Add `LogRequest` and `LogResponse` for better logging detail (enable with `RestHelpers.EnableLogging = True`)
- Allow headers and content-type to be set in authenticator `BeforeExecute`
- __3.1.1__ Fix importing class incorrectly as module bug

#### 3.0.0

Expand Down
2 changes: 1 addition & 1 deletion build/dev.vbs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Main
Sub Main()
' On Error Resume Next

PrintLn "Excel-REST v3.1.0 Development"
PrintLn "Excel-REST v3.1.1 Development"

ExcelWasOpen = OpenExcel(Excel)

Expand Down
10 changes: 5 additions & 5 deletions build/install.vbs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
''
' Install v3.1.0
' Install v3.1.1
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Install Excel-REST and authenticators
Expand Down Expand Up @@ -55,7 +55,7 @@ Main
Sub Main()
On Error Resume Next

PrintLn "Welcome to Excel-REST v3.1.0, let's get started!"
PrintLn "Welcome to Excel-REST v3.1.1, let's get started!"

ExcelWasOpen = OpenExcel(Excel)

Expand Down Expand Up @@ -107,9 +107,9 @@ Sub Execute()
Dim InstallMessage
If AlreadyInstalled(Workbook) Then
Message = Message & "(It appears Excel-REST is already installed)" & vbNewLine
Message = Message & "- upgrade - Upgrade to Excel-REST v3.1.0" & vbNewLine
Message = Message & "- upgrade - Upgrade to Excel-REST v3.1.1" & vbNewLine
Else
Message = Message & "- install - Install Excel-REST v3.1.0" & vbNewLine
Message = Message & "- install - Install Excel-REST v3.1.1" & vbNewLine
End If

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

If Left(UCase(ShouldUpgrade), 1) = "Y" Then
InstallModules
Expand Down
Binary file modified examples/Excel-REST - Example.xlsm
Binary file not shown.
Binary file modified specs/Excel-REST - Specs.xlsm
Binary file not shown.
2 changes: 1 addition & 1 deletion src/IAuthenticator.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
''
' IAuthenticator v3.1.0
' IAuthenticator v3.1.1
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Interface for creating authenticators for rest client
Expand Down
2 changes: 1 addition & 1 deletion src/RestClient.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
''
' RestClient v3.1.0
' RestClient v3.1.1
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Interact with REST web services from Excel
Expand Down
4 changes: 2 additions & 2 deletions src/RestHelpers.bas
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Attribute VB_Name = "RestHelpers"
''
' RestHelpers v3.1.0
' RestHelpers v3.1.1
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Common helpers RestClient
Expand Down Expand Up @@ -50,7 +50,7 @@ Attribute VB_Name = "RestHelpers"

#End If

Private Const UserAgent As String = "Excel Client v3.1.0 (https://github.com/timhall/Excel-REST)"
Private Const UserAgent As String = "Excel Client v3.1.1 (https://github.com/timhall/Excel-REST)"
Private DocumentHelper As Object
Private ElHelper As Object

Expand Down
2 changes: 1 addition & 1 deletion src/RestRequest.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
''
' RestRequest v3.1.0
' RestRequest v3.1.1
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Create a request for use with a rest client
Expand Down
2 changes: 1 addition & 1 deletion src/RestResponse.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
''
' RestResponse v3.1.0
' RestResponse v3.1.1
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Wrapper for http responses
Expand Down

0 comments on commit fd24a0b

Please sign in to comment.