Skip to content

Commit

Permalink
Bump to version 0.62
Browse files Browse the repository at this point in the history
  • Loading branch information
themattharris committed Mar 1, 2012
1 parent b5e9959 commit 9bf8dd4
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,15 @@ test locally to ensure your code doesn't need tmhUtilities included.
If you used custom HTTP request headers when they were defined as `'key: value'` strings
you should now define them as `'key' => 'value'` pairs.

## Change History
## Change History ##

### 0.62 - 01 March 2012
- Fix array merging bug. Props: julien-c
- use is_callable instead of function_exists: Props: samwierema
- Allow options to be specified for the entify function. Props: davidcroda
- protocol was not inferred correctly for https when ['HTTPS'] == 'on'. Props: ospector
- Switched to https for twitter.com display URLs
- Improved the search results example

### 0.61 - 16 January 2012
- Removed trailing ?> from tmhOAuth.php and tmhUtilities.php to meet the Zend Framework's coding practices. Props: reedy
Expand Down
6 changes: 3 additions & 3 deletions tmhOAuth.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
* REST requests. OAuth authentication is sent using the an Authorization Header.
*
* @author themattharris
* @version 0.61
* @version 0.62
*
* 16 January 2012
* 01 March 2012
*/
class tmhOAuth {
const VERSION = 0.61;
const VERSION = 0.62;

/**
* Creates a new tmhOAuth object
Expand Down
4 changes: 2 additions & 2 deletions tmhUtilities.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
* Helpful utility and Twitter formatting functions
*
* @author themattharris
* @version 0.2
* @version 0.3
*
* 29 September 2011
* 01 March 2012
*/
class tmhUtilities {
/**
Expand Down

0 comments on commit 9bf8dd4

Please sign in to comment.