Skip to content

Commit

Permalink
Prepared version 1.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ihor committed Mar 21, 2019
1 parent bff4282 commit 9068758
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CHANGELOG

## 1.3 / not released
## 1.3 / 2019-03-21

* Added \nspl\a\lazy which contains lazy versions of function from \nspl\a where it made sense
* Added array function chaining with the \nspl\a\with function
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2014-2016 Ihor Burlachenko
Copyright (c) 2014-2019 Ihor Burlachenko

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
documentation files (the "Software"), to deal in the Software without restriction, including without limitation
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,15 @@ Installation
Define the following requirement in your composer.json file:
```
"require": {
"ihor/nspl": "~1.2"
"ihor/nspl": "~1.3"
}
```
or execute the following in the command line:
```
composer require ihor/nspl
```

For the latest version which contains way more functionality require version ```1.3.*-dev```
For the latest version which contains way more functionality require version ```2.0.*-dev```

#### Manually
Checkout [the code](https://github.com/ihor/Nspl) and include ```autoload.php```:
Expand All @@ -76,7 +76,7 @@ include 'path/to/nspl/autoload.php';

Reference
=========
This is documentation for the dev version ```1.3.*-dev``` which contains the latest changes. For the version ```1.2``` (last stable version) documentation click [here](https://github.com/ihor/Nspl/tree/1.2#reference).
This is documentation for the dev version ```2.0.*-dev``` which contains the latest changes. For the version ```1.3``` (latest stable version) documentation click [here](https://github.com/ihor/Nspl/tree/1.3#reference).

Here I assume that described functions are imported with [use function](http://php.net/manual/en/language.namespaces.importing.php):
```php
Expand Down Expand Up @@ -1129,7 +1129,8 @@ Returns the variable type or its class name if it is an object
Roadmap
=======

- Add laziness in version 1.3
- Rewrite library using the latest features from PHP 7.2
- Move `nspl\args` into a separate module

Contributing
============
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "1.3-dev"
"dev-master": "2.0-dev"
}
}
}
9 changes: 5 additions & 4 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,15 @@ Installation
Define the following requirement in your composer.json file:
```
"require": {
"ihor/nspl": "~1.2"
"ihor/nspl": "~1.3"
}
```
or execute the following in the command line:
```
composer require ihor/nspl
```

For the latest version which contains way more functionality require version ```1.3.*-dev```
For the latest version which contains way more functionality require version ```2.0.*-dev```

#### Manually
Checkout [the code](https://github.com/ihor/Nspl) and include ```autoload.php```:
Expand All @@ -76,7 +76,7 @@ include 'path/to/nspl/autoload.php';

Reference
=========
This is documentation for the dev version ```1.3.*-dev``` which contains the latest changes. For the version ```1.2``` (last stable version) documentation click [here](https://github.com/ihor/Nspl/tree/1.2#reference).
This is documentation for the dev version ```2.0.*-dev``` which contains the latest changes. For the version ```1.3``` (latest stable version) documentation click [here](https://github.com/ihor/Nspl/tree/1.3#reference).

Here I assume that described functions are imported with [use function](http://php.net/manual/en/language.namespaces.importing.php):
```php
Expand Down Expand Up @@ -1129,7 +1129,8 @@ Returns the variable type or its class name if it is an object
Roadmap
=======

- Add laziness in version 1.3
- Rewrite library using the latest features from PHP 7.2
- Move `nspl\args` into a separate module

Contributing
============
Expand Down

0 comments on commit 9068758

Please sign in to comment.