Skip to content

Commit

Permalink
v2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
timhall committed Feb 2, 2014
1 parent a2cbb2a commit cdd4bfb
Show file tree
Hide file tree
Showing 21 changed files with 28 additions and 23 deletions.
Binary file modified Excel-REST - Blank.xlsm
Binary file not shown.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,11 @@ For more details, check out the [Wiki](https://github.com/timhall/Excel-REST/wik

### Release Notes

#### v2.1.0

- Add Microsoft Scripting Runtime dependency (for Dictionary support)
- Add `RestClient.SetProxy` for use in proxy environments

#### v2.0.0

- Remove JSONLib dependency (merged with RestHelpers)
Expand Down
2 changes: 1 addition & 1 deletion authenticators/FacebookAuthenticator.cls
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Implements IAuthenticator
' Custom IAuthenticator for Facebook OAuth
'
' @dependencies
' @author [email protected]
' @author: [email protected]
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)
'
' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ '
Expand Down
2 changes: 1 addition & 1 deletion authenticators/GoogleAuthenticator.cls
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Implements IAuthenticator
' - https://developers.google.com/accounts/docs/OAuth2InstalledApp
'
' @dependencies
' @author [email protected]
' @author: [email protected]
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)
'
' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ '
Expand Down
2 changes: 1 addition & 1 deletion authenticators/HttpBasicAuthenticator.cls
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Implements IAuthenticator
'
' Utilize http basic authentication
'
' @author [email protected]
' @author: [email protected]
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)
'
' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ '
Expand Down
2 changes: 1 addition & 1 deletion authenticators/OAuth1Authenticator.cls
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Implements IAuthenticator
'
' @dependencies
' Microsoft XML, v3+
' @author [email protected]
' @author: [email protected]
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)
'
' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ '
Expand Down
2 changes: 1 addition & 1 deletion authenticators/OAuth2Authenticator.cls
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Implements IAuthenticator
'
' @dependencies
' Microsoft XML, v3+
' @author [email protected]
' @author: [email protected]
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)
'
' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ '
Expand Down
2 changes: 1 addition & 1 deletion authenticators/TwitterAuthenticator.cls
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Implements IAuthenticator
' - https://github.com/timhall/Excel-REST/wiki/Implementing-your-own-IAuthenticator
'
' @dependencies
' @author [email protected]
' @author: [email protected]
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)
'
' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ '
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 specs/RestClientAsyncSpecs.bas
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Attribute VB_Name = "RestClientAsyncSpecs"
'
' Async specs for the RestRequest class
'
' @author [email protected]
' @author: [email protected]
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)
'
' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ '
Expand Down
2 changes: 1 addition & 1 deletion specs/RestClientBaseSpecs.bas
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Attribute VB_Name = "RestClientBaseSpecs"
'
' Async specs for the RestRequest class
'
' @author [email protected]
' @author: [email protected]
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)
'
' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ '
Expand Down
2 changes: 1 addition & 1 deletion specs/RestClientSpecs.bas
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Attribute VB_Name = "RestClientSpecs"
'
' General and sync specs for the RestClient class
'
' @author [email protected]
' @author: [email protected]
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)
'
' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ '
Expand Down
2 changes: 1 addition & 1 deletion specs/RestHelpersSpecs.bas
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Attribute VB_Name = "RestHelpersSpecs"
'
' Specs for RestHelpers
'
' @author [email protected]
' @author: [email protected]
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)
'
' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ '
Expand Down
2 changes: 1 addition & 1 deletion specs/RestRequestSpecs.bas
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Attribute VB_Name = "RestRequestSpecs"
'
' Specs for the RestRequest class
'
' @author [email protected]
' @author: [email protected]
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)
'
' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ '
Expand Down
4 changes: 2 additions & 2 deletions src/IAuthenticator.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
''
' IAuthenticator v2.0.2
' IAuthenticator v2.1.0
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Interface for creating authenticators for rest client
'
' @author [email protected]
' @author: [email protected]
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)
'
' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ '
Expand Down
4 changes: 2 additions & 2 deletions src/RestClient.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
''
' RestClient v2.0.2
' RestClient v2.1.0
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Interact with REST web services from Excel
'
' @author [email protected]
' @author: [email protected]
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)
'
' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ '
Expand Down
4 changes: 2 additions & 2 deletions src/RestClientBase.bas
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Attribute VB_Name = "RestClientBase"
''
' RestClientBase v2.0.2
' RestClientBase v2.1.0
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Extendable RestClientBase for developing custom client classes
Expand All @@ -9,7 +9,7 @@ Attribute VB_Name = "RestClientBase"
'
' Look for ">" for points to customize
'
' @author [email protected]
' @author: [email protected]
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)
'
' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ '
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 v2.0.2
' RestHelpers v2.1.0
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Common helpers RestClient
Expand Down Expand Up @@ -38,7 +38,7 @@ Attribute VB_Name = "RestHelpers"

#End If

Private Const UserAgent As String = "Excel Client v2.0.2 (https://github.com/timhall/Excel-REST)"
Private Const UserAgent As String = "Excel Client v2.1.0 (https://github.com/timhall/Excel-REST)"

' Moved to top from JSONLib
Private Const INVALID_JSON As Long = 1
Expand Down
4 changes: 2 additions & 2 deletions src/RestRequest.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
''
' RestRequest v2.0.2
' RestRequest v2.1.0
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Create a request for use with a rest client
'
' @author [email protected]
' @author: [email protected]
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)
' @dependencies: Microsoft Scripting Runtime
'
Expand Down
4 changes: 2 additions & 2 deletions src/RestResponse.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
''
' RestResponse v2.0.2
' RestResponse v2.1.0
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Wrapper for http responses
'
' @author [email protected]
' @author: [email protected]
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)
'
' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ '
Expand Down

0 comments on commit cdd4bfb

Please sign in to comment.