Skip to content

Commit dbca093

Browse files
committed
Deprecate PHP 5.6 and 7.0
Prepare release 0.7.2
1 parent f5d129a commit dbca093

File tree

5 files changed

+13
-15
lines changed

5 files changed

+13
-15
lines changed

CHANGELOG.md

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

4-
### Release 1.0.0-dev (WIP)
4+
### Release 0.7.2
55

66
#### :star: Important changes
77

8+
- :fire: Deprecate unsupported PHP versions: 5.6 and 7.0 (http://php.net/supported-versions.php).
89

910
#### :notebook: Development changes
1011

1112

1213
#### More changes
1314

14-
See [changes since v0.7.1](https://github.com/nelson6e65/php_nml/compare/v0.7.1...master?w=1) for more detailed info.
15+
See [changes since v0.7.1](https://github.com/nelson6e65/php_nml/compare/v0.7.1...v0.7.2?w=1) for more detailed info.
1516

1617

1718

README.md

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# PHP: Nelson Martell Library
22

3-
[![Travis Build Status](https://img.shields.io/travis/nelson6e65/php_nml/master.svg)](https://travis-ci.org/nelson6e65/php_nml)
4-
[![Scrutinizer Build Status](https://img.shields.io/scrutinizer/build/g/nelson6e65/php_nml.svg?b=master&label=scrutinizer)](https://scrutinizer-ci.com/g/nelson6e65/php_nml/build-status/master)
5-
[![Scrutinizer](https://img.shields.io/scrutinizer/g/nelson6e65/php_nml.svg?label=quality)](https://scrutinizer-ci.com/g/nelson6e65/php_nml/?branch=master)
6-
[![Scrutinizer Coverage](https://img.shields.io/scrutinizer/coverage/g/nelson6e65/php_nml/master.svg)](https://scrutinizer-ci.com/g/nelson6e65/php_nml/?branch=master)
3+
[![Travis Build Status](https://img.shields.io/travis/nelson6e65/php_nml/0.7.svg)](https://travis-ci.org/nelson6e65/php_nml)
4+
[![Scrutinizer Build Status](https://img.shields.io/scrutinizer/build/g/nelson6e65/php_nml.svg?b=0.7&label=scrutinizer)](https://scrutinizer-ci.com/g/nelson6e65/php_nml/build-status/0.7)
5+
[![Scrutinizer](https://img.shields.io/scrutinizer/g/nelson6e65/php_nml.svg?label=quality)](https://scrutinizer-ci.com/g/nelson6e65/php_nml/?branch=0.7)
6+
[![Scrutinizer Coverage](https://img.shields.io/scrutinizer/coverage/g/nelson6e65/php_nml/0.7.svg)](https://scrutinizer-ci.com/g/nelson6e65/php_nml/?branch=0.7)
77

88
[![GitHub release](https://img.shields.io/github/tag/nelson6e65/php_nml.svg)](https://github.com/nelson6e65/php_nml/tags)
99
[![Latest Version](https://img.shields.io/packagist/v/nelson6e65/php_nml.svg?label=stable)](https://packagist.org/packages/nelson6e65/php_nml)
1010
[![Latest unstable Version](https://img.shields.io/packagist/vpre/nelson6e65/php_nml.svg?label=unstable)](https://packagist.org/packages/nelson6e65/php_nml#dev-master)
1111
[![Waffle.io](https://img.shields.io/waffle/label/nelson6e65/php_nml/wip.svg?label=Work%20in%20progress)](http://waffle.io/nelson6e65/php_nml)
12-
[![GitHub commits](https://img.shields.io/github/commits-since/nelson6e65/php_nml/v0.7.1.svg)](https://github.com/nelson6e65/php_nml/compare/v0.7.1...master)
12+
[![GitHub commits](https://img.shields.io/github/commits-since/nelson6e65/php_nml/v0.7.2.svg)](https://github.com/nelson6e65/php_nml/compare/v0.7.2...0.7)
1313

1414
[![License](https://img.shields.io/github/license/nelson6e65/php_nml.svg)](LICENSE)
1515
[![Documentation](http://img.shields.io/badge/documentation-DOC-blue.svg)](http://nelson6e65.github.io/php_nml/api)
@@ -20,10 +20,12 @@
2020

2121
**A set of auxiliary classes to help in your PHP applications development.**
2222

23+
> **Note:** Checkout [`master` branch](https://github.com/nelson6e65/php_nml/tree/master) for current versions.
24+
2325
## Installation
2426

2527
```sh
26-
composer require nelson6e65/php_nml
28+
composer require nelson6e65/php_nml:^0.7
2729
```
2830

2931
> More info at https://nelson6e65.github.io/php_nml/guide/install.html

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.0-dev
1+
0.7.2

composer.json

-5
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,6 @@
7272
"phpunit --color=always --coverage-html=\"output/code-coverage\""
7373
]
7474
},
75-
"extra": {
76-
"branch-alias": {
77-
"dev-master": "v1.0.x-dev"
78-
}
79-
},
8075
"minimum-stability": "dev",
8176
"prefer-stable": true
8277
}

src/constants.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
* @constant string
3535
* @since 0.4.4
3636
*/
37-
define('NML_VERSION', '1.0.0-dev');
37+
define('NML_VERSION', '0.7.2');
3838

3939

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

0 commit comments

Comments
 (0)