Skip to content

Commit 2f5b0c8

Browse files
committed
Prepare 0.7.0 release
1 parent fc450d5 commit 2f5b0c8

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

CHANGELOG.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
## CHANGELOG
22
Release notes for *PHP: Nelson Martell Library*.
33

4-
### Release 0.7.0 (WIP)
4+
### Release 0.7.0
55

66
#### :star: Important changes
77

88
This release is mainly intended to provide PHP 7 compatibility:
99

1010
- :fire: Rename class _`NelsonMartell\Extensions\String`_ to **`NelsonMartell\Extensions\Text`**, but still available in PHP 5.6 as alias.
1111
- :fire: Rename class _`NelsonMartell\Object`_ to **`NelsonMartell\StrictObject`**, but still available in PHP < 7.2 as alias.
12-
- :fire: Drop support for PHP 5.5 or less. It still compatible with PHP 5.6.
12+
- :fire: Drop support for PHP < 5.6.
1313
- :fire: Remove deprecated code in v0.6.
1414
- :fire: Remove global functions. Are only available under `NelsonMartell` namespace now.
1515
- :bug: Correct minor issues.
@@ -35,6 +35,8 @@ There are some improvements for development:
3535
- `composer build-api`
3636
- :new: Add [CONTRIBUTING](CONTRIBUTING.md) file.
3737

38+
> **NOTE**: API Documentation not updated to this release due to conflict in API generation tool.
39+
3840
#### More changes
3941

4042
See [changes since v0.6.1](https://github.com/nelson6e65/php_nml/compare/v0.6.1...master?w=1) for more detailed info.

README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,10 @@ Check available classes in the [![API Documentation](http://img.shields.io/badge
7777

7878
use NelsonMartell\Version;
7979

80-
$nmlVersion = new Version(0, 6);
80+
$nmlVersion = new Version(0, 7);
8181

8282
// Create Version object parsing from string
83-
$nmlVersion = Version::parse('0.6.0');
83+
$nmlVersion = Version::parse(NML_VERSION);
8484

8585
// Explicit to string
8686
echo $nmlVersion->toString();
@@ -93,6 +93,9 @@ echo $nmlVersion;
9393

9494
```
9595

96+
> 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`.
97+
98+
9699
## License
97100

98101
[![License](https://img.shields.io/github/license/nelson6e65/php_nml.svg)](LICENSE)

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.7.0-dev
1+
0.7.0

src/constants.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
* @constant string
3535
* @since v0.4.4
3636
*/
37-
define('NML_VERSION', '0.6.1');
37+
define('NML_VERSION', '0.7.0');
3838

3939

4040
// #############################################################################

0 commit comments

Comments
 (0)