Skip to content

Commit

Permalink
Prepare 0.7.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nelson6e65 committed Dec 4, 2017
1 parent fc450d5 commit 2f5b0c8
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
## CHANGELOG
Release notes for *PHP: Nelson Martell Library*.

### Release 0.7.0 (WIP)
### Release 0.7.0

#### :star: Important changes

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.
Expand All @@ -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.
Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.7.0-dev
0.7.0
2 changes: 1 addition & 1 deletion src/constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* @constant string
* @since v0.4.4
*/
define('NML_VERSION', '0.6.1');
define('NML_VERSION', '0.7.0');


// #############################################################################
Expand Down

0 comments on commit 2f5b0c8

Please sign in to comment.