Skip to content

Commit

Permalink
Upping version number in composer.json
Browse files Browse the repository at this point in the history
  • Loading branch information
gerbenjacobs committed Mar 30, 2015
1 parent e303db3 commit 4b47b2c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,5 @@ See the `example.php` file on how to use this library at the moment.
```

## Current status
March 30th, 2015 - v1.0.1 - Added hasProfile and more stable example.php
March 28th, 2015 - v1.0.0 - Created first tagged release, includes Travis CI and Packagist integration.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "gerbenjacobs/habbo-api",
"description": "A PHP wrapper for the (undocumented) Habbo Hotel API",
"keywords": ["habbo","api","wrapper"],
"version": "1.0.0",
"version": "1.0.1",
"license" : "MIT",
"authors": [
{
Expand Down
2 changes: 1 addition & 1 deletion example.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
echo '<h3>'.$habbo->getHabboName().'</h3>';
echo '<p>'.$habbo->getMotto().'<br><em>'.date('d-M-Y', strtotime($habbo->getMemberSince())).'</em></p>';
if ($habbo->getProfileVisible()) {
echo '<p><a href="https://beta.habbo.com/profile/'.$habbo->getHabboName().'">View home &raquo;</a></p>';
echo '<p><a href="https://www.habbo.com/profile/'.$habbo->getHabboName().'">View home &raquo;</a></p>';
}
if ($badges = $habbo->getSelectedBadges()) {
foreach ($badges as $badge) {
Expand Down

0 comments on commit 4b47b2c

Please sign in to comment.