Skip to content

Commit

Permalink
release version 1.3.0
Browse files Browse the repository at this point in the history
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
  • Loading branch information
gkralik committed Feb 23, 2019
1 parent ef5c537 commit cde1eea
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`)
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion php_sapnwrfc.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions scripts/README.release.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 "..."
Expand Down

0 comments on commit cde1eea

Please sign in to comment.