diff --git a/Excel-REST - Blank.xlsm b/Excel-REST - Blank.xlsm index 6cdd4288..b62ec20c 100644 Binary files a/Excel-REST - Blank.xlsm and b/Excel-REST - Blank.xlsm differ diff --git a/README.md b/README.md index bfad3209..d7402819 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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 diff --git a/build/dev.vbs b/build/dev.vbs index 2386b06b..2cc0f405 100644 --- a/build/dev.vbs +++ b/build/dev.vbs @@ -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) diff --git a/build/install.vbs b/build/install.vbs index f6560abc..75c9b84a 100644 --- a/build/install.vbs +++ b/build/install.vbs @@ -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 @@ -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) @@ -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" @@ -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 diff --git a/examples/Excel-REST - Example.xlsm b/examples/Excel-REST - Example.xlsm index 1fa95412..02b29e6f 100644 Binary files a/examples/Excel-REST - Example.xlsm and b/examples/Excel-REST - Example.xlsm differ diff --git a/specs/Excel-REST - Specs.xlsm b/specs/Excel-REST - Specs.xlsm index 1ad7764c..2801c212 100644 Binary files a/specs/Excel-REST - Specs.xlsm and b/specs/Excel-REST - Specs.xlsm differ diff --git a/src/IAuthenticator.cls b/src/IAuthenticator.cls index 22e639ce..e46dcb86 100644 --- a/src/IAuthenticator.cls +++ b/src/IAuthenticator.cls @@ -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 diff --git a/src/RestClient.cls b/src/RestClient.cls index 08646ff8..dbb9af62 100644 --- a/src/RestClient.cls +++ b/src/RestClient.cls @@ -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 diff --git a/src/RestHelpers.bas b/src/RestHelpers.bas index 741b69a3..816959b1 100644 --- a/src/RestHelpers.bas +++ b/src/RestHelpers.bas @@ -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 @@ -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 diff --git a/src/RestRequest.cls b/src/RestRequest.cls index dba39447..7aa96d12 100644 --- a/src/RestRequest.cls +++ b/src/RestRequest.cls @@ -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 diff --git a/src/RestResponse.cls b/src/RestResponse.cls index 478e3707..b4d56f50 100644 --- a/src/RestResponse.cls +++ b/src/RestResponse.cls @@ -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