Skip to content

Commit

Permalink
Fix README / Fix version number to 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hnw committed Mar 3, 2013
1 parent 660f01e commit 6f8cc2e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ extension=timecop.so
- Rewrite value of the following global variables when the time has been moved.
- $_SERVER['REQUEST_TIME']


## USAGE

```php
Expand All @@ -64,6 +63,20 @@ var_dump(gmdate("Y-m-d H:i:s")); // string(19) "1970-01-01 00:00:00"
var_dump(strtotime("+100000 sec")); // int(10000)
```

## CHANGELOG

###version 1.0.1, 2013/03/04

-Fixed time traveling bug about DateTime::__construct() when it is called with 1 or 2 arguments

###version 1.0.0, 2012/11/21

-Fixed memory leak

###version 0.0.1, 2012/06/19

-Initial Release

## LICENSE
#
The MIT License
Expand Down
2 changes: 1 addition & 1 deletion php_timecop.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#ifndef PHP_TIMECOP_H
#define PHP_TIMECOP_H

#define PHP_TIMECOP_VERSION "1.0.0"
#define PHP_TIMECOP_VERSION "1.0.1"

extern zend_module_entry timecop_module_entry;
#define phpext_timecop_ptr &timecop_module_entry
Expand Down

0 comments on commit 6f8cc2e

Please sign in to comment.