Skip to content

Commit 1361fc5

Browse files
committed
Update version (1.0.0-rc)
1 parent bd483a9 commit 1361fc5

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

php_xfilter.h

+1-9
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,10 @@
2727
extern zend_module_entry xfilter_module_entry;
2828
#define phpext_xfilter_ptr &xfilter_module_entry
2929

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

3232
#define KEYWORD_MAX_LEN 1024
3333

34-
#ifdef PHP_WIN32
35-
# define PHP_XFILTER_API __declspec(dllexport)
36-
#elif defined(__GNUC__) && __GNUC__ >= 4
37-
# define PHP_XFILTER_API __attribute__ ((visibility("default")))
38-
#else
39-
# define PHP_XFILTER_API
40-
#endif
41-
4234
#ifdef ZTS
4335
#include "TSRM.h"
4436
#endif

xfilter.c

+2
Original file line numberDiff line numberDiff line change
@@ -329,6 +329,8 @@ PHP_MINFO_FUNCTION(xfilter)
329329
{
330330
php_info_print_table_start();
331331
php_info_print_table_header(2, "xfilter support", "enabled");
332+
php_info_print_table_row(2, "Version", PHP_XFILTER_VERSION);
333+
332334
php_info_print_table_end();
333335

334336
DISPLAY_INI_ENTRIES();

0 commit comments

Comments
 (0)