From cde1eea2d57a262ee6dca8e97aed3f1e85ffc83b Mon Sep 17 00:00:00 2001 From: Gregor Kralik Date: Sat, 23 Feb 2019 16:12:42 +0100 Subject: [PATCH] release version 1.3.0 Added - Add optional `$options` parameter to `Connection::__construct()` - Connnection constructor accepts `use_function_desc_cache` option (defaults to `true`) - `Connection::getFunction()` clears the function desc cache if `use_function_desc_cache` set to `false` before looking up the function - Add `\SAPNWRFC\clearFunctionDescCache($functionName, $repositoryId)` function Changed - Update documentation: fix link to sapnwrfc.ini settings, give saprouter example --- CHANGELOG.md | 5 ++++- docs/conf.py | 4 ++-- php_sapnwrfc.h | 2 +- scripts/README.release.md | 1 + 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b031381..f1b90a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. ## [Unreleased] + +## [1.3.0] - 2019-02-23 ### Added - Add optional `$options` parameter to `Connection::__construct()` - Connnection constructor accepts `use_function_desc_cache` option (defaults to `true`) @@ -109,7 +111,8 @@ All notable changes to this project will be documented in this file. ### Added - Initial working release of the extension -[Unreleased]: https://github.com/gkralik/php7-sapnwrfc/compare/1.2.1...HEAD +[Unreleased]: https://github.com/gkralik/php7-sapnwrfc/compare/1.3.0...HEAD +[1.3.0]: https://github.com/gkralik/php7-sapnwrfc/compare/1.2.1...1.3.0 [1.2.1]: https://github.com/gkralik/php7-sapnwrfc/compare/1.2.0...1.2.1 [1.2.0]: https://github.com/gkralik/php7-sapnwrfc/compare/1.1.3...1.2.0 [1.1.3]: https://github.com/gkralik/php7-sapnwrfc/compare/1.1.2...1.1.3 diff --git a/docs/conf.py b/docs/conf.py index 712fd8f..e7ab229 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -55,9 +55,9 @@ # built documents. # # The short X.Y version. -version = '1.3.0-alpha' +version = '1.3.0' # The full version, including alpha/beta/rc tags. -release = '1.3.0-alpha' +release = '1.3.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/php_sapnwrfc.h b/php_sapnwrfc.h index 32dc7b7..ec6b97b 100644 --- a/php_sapnwrfc.h +++ b/php_sapnwrfc.h @@ -13,7 +13,7 @@ extern zend_module_entry sapnwrfc_module_entry; #define phpext_sapnwrfc_ptr &sapnwrfc_module_entry -#define PHP_SAPNWRFC_VERSION "1.3.0-alpha" +#define PHP_SAPNWRFC_VERSION "1.3.0" #ifdef PHP_WIN32 # define PHP_SAPNWRFC_API __declspec(dllexport) diff --git a/scripts/README.release.md b/scripts/README.release.md index 251bab9..a4c8286 100644 --- a/scripts/README.release.md +++ b/scripts/README.release.md @@ -4,6 +4,7 @@ $ git checkout -b release-x.y.z master $ php scripts/bump_version.php x.y.z update changelog for release +$ php scripts/bump_version x.y.z $ git add . $ git commit -m "..." $ git tag -a x.y.z -m "..."