Skip to content

Commit

Permalink
Merge pull request #81 from andypost/79-version-fix
Browse files Browse the repository at this point in the history
Fix version string and remove revision
  • Loading branch information
tomassrnka committed Dec 6, 2020
2 parents 36d7181 + fa6e417 commit 0fa35c0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/memcache.c
Original file line number Diff line number Diff line change
Expand Up @@ -780,7 +780,6 @@ PHP_MINFO_FUNCTION(memcache)
php_info_print_table_start();
php_info_print_table_header(2, "memcache support", "enabled");
php_info_print_table_row(2, "Version", PHP_MEMCACHE_VERSION);
php_info_print_table_row(2, "Revision", "$Revision$");
php_info_print_table_end();

DISPLAY_INI_ENTRIES();
Expand Down
2 changes: 1 addition & 1 deletion src/php_memcache.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ PHP_FUNCTION(memcache_close);
PHP_FUNCTION(memcache_flush);
PHP_FUNCTION(memcache_set_sasl_auth_data);

#define PHP_MEMCACHE_VERSION "4.0.5.2"
#define PHP_MEMCACHE_VERSION "8.1-dev"

#define MMC_DEFAULT_TIMEOUT 1 /* seconds */
#define MMC_DEFAULT_RETRY 15 /* retry failed server after x seconds */
Expand Down

0 comments on commit 0fa35c0

Please sign in to comment.