Skip to content

Commit

Permalink
Update version (1.0.0-rc)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdoco committed Jun 20, 2018
1 parent bd483a9 commit 1361fc5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
10 changes: 1 addition & 9 deletions php_xfilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,10 @@
extern zend_module_entry xfilter_module_entry;
#define phpext_xfilter_ptr &xfilter_module_entry

#define PHP_XFILTER_VERSION "0.1.0" /* Replace with version number for your extension */
#define PHP_XFILTER_VERSION "1.0.0-rc"

#define KEYWORD_MAX_LEN 1024

#ifdef PHP_WIN32
# define PHP_XFILTER_API __declspec(dllexport)
#elif defined(__GNUC__) && __GNUC__ >= 4
# define PHP_XFILTER_API __attribute__ ((visibility("default")))
#else
# define PHP_XFILTER_API
#endif

#ifdef ZTS
#include "TSRM.h"
#endif
Expand Down
2 changes: 2 additions & 0 deletions xfilter.c
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,8 @@ PHP_MINFO_FUNCTION(xfilter)
{
php_info_print_table_start();
php_info_print_table_header(2, "xfilter support", "enabled");
php_info_print_table_row(2, "Version", PHP_XFILTER_VERSION);

php_info_print_table_end();

DISPLAY_INI_ENTRIES();
Expand Down

0 comments on commit 1361fc5

Please sign in to comment.