Skip to content

Commit

Permalink
v4.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
timhall committed Feb 4, 2015
1 parent a495dc0 commit 215dc36
Show file tree
Hide file tree
Showing 14 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Major Changes:
- Windows authentication
- Switch to `WinHttpRequest` (Windows' modern web library)
- General API cleanup and bugfixes
- __4.0.1__ cURL escape parameters in authenticators, url-encode UrlSegments, and add `SetHeader`

Breaking Changes:

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ VBA-Web (formerly Excel-REST) makes working with complex webservices and APIs ea
Getting started
---------------

- Download the [latest release (v4.0.0)](https://github.com/VBA-tools/VBA-Web/releases)
- Download the [latest release (v4.0.1)](https://github.com/VBA-tools/VBA-Web/releases)
- To install/upgrade in an existing file, use `VBA-Web - Installer.xlsm`
- To start from scratch in Excel, `VBA-Web - Blank.xlsm` has everything setup and ready to go

Expand Down
Binary file modified VBA-Web - Blank.xlsm
Binary file not shown.
Binary file modified VBA-Web - Installer.xlsm
Binary file not shown.
2 changes: 1 addition & 1 deletion build/dev.vbs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ Main
Sub Main()
On Error Resume Next

PrintLn "VBA-Web v4.0.0 Development"
PrintLn "VBA-Web v4.0.1 Development"

ExcelWasOpen = OpenExcel(Excel)

Expand Down
Binary file modified examples/VBA-Web - Example.xlsm
Binary file not shown.
Binary file modified specs/VBA-Web - Specs - Async.xlsm
Binary file not shown.
Binary file modified specs/VBA-Web - Specs.xlsm
Binary file not shown.
2 changes: 1 addition & 1 deletion src/IWebAuthenticator.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
''
' IWebAuthenticator v4.0.0
' IWebAuthenticator v4.0.1
' (c) Tim Hall - https://github.com/VBA-tools/VBA-Web
'
' Interface for creating authenticators for rest client
Expand Down
2 changes: 1 addition & 1 deletion src/WebAsyncWrapper.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
''
' WebAsyncWrapper v4.0.0
' WebAsyncWrapper v4.0.1
' (c) Tim Hall - https://github.com/VBA-tools/VBA-Web
'
' Wrapper WebClient and WebRequest that enables callback-style async requests
Expand Down
2 changes: 1 addition & 1 deletion src/WebClient.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
''
' WebClient v4.0.0
' WebClient v4.0.1
' (c) Tim Hall - https://github.com/VBA-tools/VBA-Web
'
' Execute requests and handle responses
Expand Down
4 changes: 2 additions & 2 deletions src/WebHelpers.bas
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Attribute VB_Name = "WebHelpers"
''
' WebHelpers v4.0.0
' WebHelpers v4.0.1
' (c) Tim Hall - https://github.com/VBA-tools/VBA-Web
'
' Common helpers VBA-Web
Expand Down Expand Up @@ -203,7 +203,7 @@ Private Declare Function web_fread Lib "libc.dylib" Alias "fread" (ByVal outStr
Private Declare Function web_feof Lib "libc.dylib" Alias "feof" (ByVal File As Long) As Long
#End If

Public Const WebUserAgent As String = "VBA-Web v4.0.0 (https://github.com/VBA-tools/VBA-Web)"
Public Const WebUserAgent As String = "VBA-Web v4.0.1 (https://github.com/VBA-tools/VBA-Web)"

' @internal
Public Type ShellResult
Expand Down
2 changes: 1 addition & 1 deletion src/WebRequest.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
''
' WebRequest v4.0.0
' WebRequest v4.0.1
' (c) Tim Hall - https://github.com/VBA-tools/VBA-Web
'
' Create a request for use with a WebClient
Expand Down
2 changes: 1 addition & 1 deletion src/WebResponse.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
''
' WebResponse v4.0.0
' WebResponse v4.0.1
' (c) Tim Hall - https://github.com/VBA-tools/VBA-Web
'
' Wrapper for http/cURL responses
Expand Down

0 comments on commit 215dc36

Please sign in to comment.