Skip to content

Commit

Permalink
Release version 1.2.0
Browse files Browse the repository at this point in the history
Changes:
- Allow `rtrim` option for `RemoteFunction::invoke()` to unify string handling (enabled by
default)
- Add scripts/publish_docs.sh
- Add scripts/bump_version.php
- Support for PHP 7.2
- Custom make targets `extclean` and `extdistclean` to remove intermediary build artefacts
- Add new documentation
  • Loading branch information
gkralik committed Mar 4, 2018
1 parent 1f54b50 commit 5037b3b
Show file tree
Hide file tree
Showing 3 changed files with 7 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.2.0] - 2018-03-04
### Added
- Allow `rtrim` option for `RemoteFunction::invoke()` to unify string handling (enabled by default)
- Add scripts/publish_docs.sh
Expand Down Expand Up @@ -96,7 +98,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.1.3...HEAD
[Unreleased]: https://github.com/gkralik/php7-sapnwrfc/compare/1.2.0...HEAD
[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
[1.1.2]: https://github.com/gkralik/php7-sapnwrfc/compare/1.1.1...1.1.2
[1.1.1]: https://github.com/gkralik/php7-sapnwrfc/compare/1.1.0...1.1.1
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.1.3'
version = '1.2.0'
# The full version, including alpha/beta/rc tags.
release = '1.1.3'
release = '1.2.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.1.3"
#define PHP_SAPNWRFC_VERSION "1.2.0"

#ifdef PHP_WIN32
# define PHP_SAPNWRFC_API __declspec(dllexport)
Expand Down

0 comments on commit 5037b3b

Please sign in to comment.