Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
codemoran committed Dec 6, 2014
1 parent cbe48e0 commit 1cb0052
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -24,8 +24,8 @@ Steps to use PECL to install the extension
* Downloaded and extract the latest tarball (https://github.com/alphashack/graphdat-sdk-php/archive/master.zip)
* Update the date in package2.xml to today
* Run `pecl package`
* If you are building on an older 32-bit x86 system, e.g. CentOS or Redhat 5, run `CFLAGS=-march=i686 pecl install graphdat-1.0.3.tgz`
* Otherwise, run `pecl install graphdat-1.0.3.tgz`
* If you are building on an older 32-bit x86 system, e.g. CentOS or Redhat 5, run `CFLAGS=-march=i686 pecl install graphdat-1.0.4.tgz`
* Otherwise, run `pecl install graphdat-1.0.4.tgz`

The extension is now installed and will need to be enabled. Adding the following line to your php.ini file

Expand Down
8 changes: 4 additions & 4 deletions package.xml
Expand Up @@ -14,12 +14,12 @@ http://pear.php.net/dtd/package-2.0.xsd">
<email>support@graphdat.com</email>
<active>yes</active>
</lead>
<date>2014-09-18</date>
<time>10:57:10</time>
<date>2014-12-5</date>
<time>21:16:00</time>
<version>
<!-- remember to check PHP_GRAPHDAT_VERSION in php_graphdat.h before release -->
<release>1.0.3</release>
<api>1.0.3</api>
<release>1.0.4</release>
<api>1.0.4</api>
</version>
<stability>
<release>stable</release>
Expand Down
12 changes: 6 additions & 6 deletions php_graphdat.h
Expand Up @@ -21,7 +21,7 @@
#ifndef PHP_GRAPHDAT_H
#define PHP_GRAPHDAT_H

#define PHP_GRAPHDAT_VERSION "1.0.3"
#define PHP_GRAPHDAT_VERSION "1.0.4"

#include <sys/time.h>
#include "timers.h"
Expand Down Expand Up @@ -61,9 +61,9 @@ PHP_MINFO_FUNCTION(graphdat);
PHP_FUNCTION(graphdat_begin);
PHP_FUNCTION(graphdat_end);

/*
/*
Declare any global variables you may need between the BEGIN
and END macros here:
and END macros here:
*/
ZEND_BEGIN_MODULE_GLOBALS(graphdat)
// items for settings
Expand All @@ -86,12 +86,12 @@ ZEND_BEGIN_MODULE_GLOBALS(graphdat)
ZEND_END_MODULE_GLOBALS(graphdat)


/* In every utility function you add that needs to use variables
in php_graphdat_globals, call TSRMLS_FETCH(); after declaring other
/* In every utility function you add that needs to use variables
in php_graphdat_globals, call TSRMLS_FETCH(); after declaring other
variables used by that function, or better yet, pass in TSRMLS_CC
after the last function argument and declare your utility function
with TSRMLS_DC after the last declared argument. Always refer to
the globals in your function as GRAPHDAT_G(variable). You are
the globals in your function as GRAPHDAT_G(variable). You are
encouraged to rename these macros something shorter, see
examples in any other php module directory.
*/
Expand Down

0 comments on commit 1cb0052

Please sign in to comment.