From 2f5b0c886a2ece12b07c73b8980b689a9029c82d Mon Sep 17 00:00:00 2001 From: Nelson Martell Date: Sun, 3 Dec 2017 23:58:23 -0400 Subject: [PATCH] Prepare 0.7.0 release --- CHANGELOG.md | 6 ++++-- README.md | 7 +++++-- VERSION | 2 +- src/constants.php | 2 +- 4 files changed, 11 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 498ca96..f68dbfc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ ## CHANGELOG Release notes for *PHP: Nelson Martell Library*. -### Release 0.7.0 (WIP) +### Release 0.7.0 #### :star: Important changes @@ -9,7 +9,7 @@ This release is mainly intended to provide PHP 7 compatibility: - :fire: Rename class _`NelsonMartell\Extensions\String`_ to **`NelsonMartell\Extensions\Text`**, but still available in PHP 5.6 as alias. - :fire: Rename class _`NelsonMartell\Object`_ to **`NelsonMartell\StrictObject`**, but still available in PHP < 7.2 as alias. -- :fire: Drop support for PHP 5.5 or less. It still compatible with PHP 5.6. +- :fire: Drop support for PHP < 5.6. - :fire: Remove deprecated code in v0.6. - :fire: Remove global functions. Are only available under `NelsonMartell` namespace now. - :bug: Correct minor issues. @@ -35,6 +35,8 @@ There are some improvements for development: - `composer build-api` - :new: Add [CONTRIBUTING](CONTRIBUTING.md) file. +> **NOTE**: API Documentation not updated to this release due to conflict in API generation tool. + #### More changes See [changes since v0.6.1](https://github.com/nelson6e65/php_nml/compare/v0.6.1...master?w=1) for more detailed info. diff --git a/README.md b/README.md index 5af73ad..76cc448 100644 --- a/README.md +++ b/README.md @@ -77,10 +77,10 @@ Check available classes in the [![API Documentation](http://img.shields.io/badge use NelsonMartell\Version; -$nmlVersion = new Version(0, 6); +$nmlVersion = new Version(0, 7); // Create Version object parsing from string -$nmlVersion = Version::parse('0.6.0'); +$nmlVersion = Version::parse(NML_VERSION); // Explicit to string echo $nmlVersion->toString(); @@ -93,6 +93,9 @@ echo $nmlVersion; ``` +> Note: API documentation is not updated for `0.7.0` release due to problems with the API Generation Tool (ApiGen), but will be solved soon, maybe for `v0.7.1`. + + ## License [![License](https://img.shields.io/github/license/nelson6e65/php_nml.svg)](LICENSE) diff --git a/VERSION b/VERSION index e1bde80..faef31a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.7.0-dev +0.7.0 diff --git a/src/constants.php b/src/constants.php index dfe16be..184753a 100644 --- a/src/constants.php +++ b/src/constants.php @@ -34,7 +34,7 @@ * @constant string * @since v0.4.4 */ -define('NML_VERSION', '0.6.1'); +define('NML_VERSION', '0.7.0'); // #############################################################################