Skip to content

Commit

Permalink
2019-05-13 AC: Release-3.1.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewscaya committed May 13, 2019
2 parents 231251b + 09915ec commit aefe012
Show file tree
Hide file tree
Showing 86 changed files with 107 additions and 88 deletions.
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
# CHANGELOG

## 3.1.2 (2019-05-13)

- Removes some dead code (Skeleton Application).

- Updates the project's dependencies.

- Updates the user documentation.

## 3.1.1 (2019-05-08)

* Updates all the templates (Skeleton Application).
- Updates all the templates (Skeleton Application).

* Updates the documentation.
- Updates the documentation.

## 3.1.0 (2019-04-30)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# [![LightMVC Banner](docs/images/logo.png)](https://lightmvcframework.net/)
# [![LightMVC Banner](https://github.com/lightmvc/lightmvcskel/raw/master/public/img/lightmvc_logo.png)](https://lightmvcframework.net/)
# LightMVC Framework

https://lightmvcframework.net
Expand Down
6 changes: 3 additions & 3 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
# The short X.Y version.
version = '3.1'
# The full version, including alpha/beta/rc tags.
release = '3.1.1'
release = '3.1.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 3 additions & 1 deletion docs/controllers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,9 @@ from one aggregate to another.
Additionally, the 'pre' action methods allow for the dispatching of events before the actual call to the
main action method. The naming convention for 'pre' methods is to capitalize the first letter of the name
of the action method and to add the prefix 'pre' in front of the name. Thus, the ``indexAction()`` method
would have a 'pre' action method with the name ``preIndexAction()``.
would have a 'pre' action method with the name ``preIndexAction()``. The 'pre' method has access to the same
environment variables as the controller's main request handler method, through the injection of the
``$vars`` variable.

.. note:: For further reading on the framework's event sourcing aggregates in general, please see the :ref:`eventsourcing` section.

Expand Down
9 changes: 9 additions & 0 deletions docs/whats_new.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
.. _WhatsNewAnchor:

What's new in version 3.1.2 (2019-05-13)
========================================

* Removes some dead code (Skeleton Application).

* Updates the project's dependencies.

* Updates the user documentation.

What's new in version 3.1.1 (2019-05-08)
========================================

Expand Down
2 changes: 1 addition & 1 deletion src/AbstractApp.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package LightMVC/ASCMVC
* @author Andrew Caya
* @link https://github.com/lightmvc/ascmvc
* @version 3.1.1
* @version 3.1.2
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0.
* @since 1.0.0
*/
Expand Down
2 changes: 1 addition & 1 deletion src/AbstractController.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package LightMVC/ASCMVC
* @author Andrew Caya
* @link https://github.com/lightmvc/ascmvc
* @version 3.1.1
* @version 3.1.2
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0.
* @since 1.0.0
*/
Expand Down
2 changes: 1 addition & 1 deletion src/AbstractControllerManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package LightMVC/ASCMVC
* @author Andrew Caya
* @link https://github.com/lightmvc/ascmvc
* @version 3.1.1
* @version 3.1.2
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0.
* @since 1.0.0
*/
Expand Down
2 changes: 1 addition & 1 deletion src/AbstractModelObject.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package LightMVC/ASCMVC
* @author Andrew Caya
* @link https://github.com/lightmvc/ascmvc
* @version 3.1.1
* @version 3.1.2
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0.
* @since 1.0.0
*/
Expand Down
2 changes: 1 addition & 1 deletion src/AbstractRouter.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package LightMVC/ASCMVC
* @author Andrew Caya
* @link https://github.com/lightmvc/ascmvc
* @version 3.1.1
* @version 3.1.2
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0.
* @since 1.0.0
*/
Expand Down
2 changes: 1 addition & 1 deletion src/AscmvcBootstrapListenerInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package LightMVC/ASCMVC
* @author Andrew Caya
* @link https://github.com/lightmvc/ascmvc
* @version 3.1.1
* @version 3.1.2
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0.
* @since 2.0.0
*/
Expand Down
2 changes: 1 addition & 1 deletion src/AscmvcControllerFactoryInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package LightMVC/ASCMVC
* @author Andrew Caya
* @link https://github.com/lightmvc/ascmvc
* @version 3.1.1
* @version 3.1.2
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0.
* @since 2.0.0
*/
Expand Down
2 changes: 1 addition & 1 deletion src/AscmvcDispatchListenerInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package LightMVC/ASCMVC
* @author Andrew Caya
* @link https://github.com/lightmvc/ascmvc
* @version 3.1.1
* @version 3.1.2
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0.
* @since 2.0.0
*/
Expand Down
2 changes: 1 addition & 1 deletion src/AscmvcEventManagerListenerInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package LightMVC/ASCMVC
* @author Andrew Caya
* @link https://github.com/lightmvc/ascmvc
* @version 3.1.1
* @version 3.1.2
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0.
* @since 2.0.0
*/
Expand Down
2 changes: 1 addition & 1 deletion src/AscmvcFinishListenerInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package LightMVC/ASCMVC
* @author Andrew Caya
* @link https://github.com/lightmvc/ascmvc
* @version 3.1.1
* @version 3.1.2
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0.
* @since 2.0.0
*/
Expand Down
2 changes: 1 addition & 1 deletion src/AscmvcRenderListenerInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package LightMVC/ASCMVC
* @author Andrew Caya
* @link https://github.com/lightmvc/ascmvc
* @version 3.1.1
* @version 3.1.2
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0.
* @since 2.0.0
*/
Expand Down
2 changes: 1 addition & 1 deletion src/AscmvcRouteListenerInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package LightMVC/ASCMVC
* @author Andrew Caya
* @link https://github.com/lightmvc/ascmvc
* @version 3.1.1
* @version 3.1.2
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0.
* @since 2.0.0
*/
Expand Down
2 changes: 1 addition & 1 deletion src/EventSourcing/AggregateEventListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package LightMVC/ASCMVC
* @author Andrew Caya
* @link https://github.com/lightmvc/ascmvc
* @version 3.1.1
* @version 3.1.2
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0.
* @since 3.1.0
*/
Expand Down
2 changes: 1 addition & 1 deletion src/EventSourcing/AggregateEventListenerInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package LightMVC/ASCMVC
* @author Andrew Caya
* @link https://github.com/lightmvc/ascmvc
* @version 3.1.1
* @version 3.1.2
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0.
* @since 3.1.0
*/
Expand Down
2 changes: 1 addition & 1 deletion src/EventSourcing/AggregateImmutableValueObject.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package LightMVC/ASCMVC
* @author Andrew Caya
* @link https://github.com/lightmvc/ascmvc
* @version 3.1.1
* @version 3.1.2
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0.
* @since 3.0.0
*/
Expand Down
2 changes: 1 addition & 1 deletion src/EventSourcing/AggregatePolicy.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package LightMVC/ASCMVC
* @author Andrew Caya
* @link https://github.com/lightmvc/ascmvc
* @version 3.1.1
* @version 3.1.2
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0.
* @since 3.1.0
*/
Expand Down
2 changes: 1 addition & 1 deletion src/EventSourcing/AggregateReadModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package LightMVC/ASCMVC
* @author Andrew Caya
* @link https://github.com/lightmvc/ascmvc
* @version 3.1.1
* @version 3.1.2
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0.
* @since 3.1.0
*/
Expand Down
2 changes: 1 addition & 1 deletion src/EventSourcing/AggregateRootController.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package LightMVC/ASCMVC
* @author Andrew Caya
* @link https://github.com/lightmvc/ascmvc
* @version 3.1.1
* @version 3.1.2
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0.
* @since 3.1.0
*/
Expand Down
2 changes: 1 addition & 1 deletion src/EventSourcing/AsyncCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package LightMVC/ASCMVC
* @author Andrew Caya
* @link https://github.com/lightmvc/ascmvc
* @version 3.1.1
* @version 3.1.2
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0.
* @since 3.1.0
*/
Expand Down
2 changes: 1 addition & 1 deletion src/EventSourcing/Command.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package LightMVC/ASCMVC
* @author Andrew Caya
* @link https://github.com/lightmvc/ascmvc
* @version 3.1.1
* @version 3.1.2
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0.
* @since 3.0.0
*/
Expand Down
2 changes: 1 addition & 1 deletion src/EventSourcing/CommandRunner.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package LightMVC/ASCMVC
* @author Andrew Caya
* @link https://github.com/lightmvc/ascmvc
* @version 3.1.1
* @version 3.1.2
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0.
* @since 3.1.0
*/
Expand Down
2 changes: 1 addition & 1 deletion src/EventSourcing/Event/AggregateEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package LightMVC/ASCMVC
* @author Andrew Caya
* @link https://github.com/lightmvc/ascmvc
* @version 3.1.1
* @version 3.1.2
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0.
* @since 3.0.0
*/
Expand Down
2 changes: 1 addition & 1 deletion src/EventSourcing/Event/Event.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package LightMVC/ASCMVC
* @author Andrew Caya
* @link https://github.com/lightmvc/ascmvc
* @version 3.1.1
* @version 3.1.2
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0.
* @since 3.0.0
*/
Expand Down
2 changes: 1 addition & 1 deletion src/EventSourcing/Event/ReadAggregateCompletedEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package LightMVC/ASCMVC
* @author Andrew Caya
* @link https://github.com/lightmvc/ascmvc
* @version 3.1.1
* @version 3.1.2
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0.
* @since 3.0.0
*/
Expand Down
2 changes: 1 addition & 1 deletion src/EventSourcing/Event/WriteAggregateCompletedEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package LightMVC/ASCMVC
* @author Andrew Caya
* @link https://github.com/lightmvc/ascmvc
* @version 3.1.1
* @version 3.1.2
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0.
* @since 3.0.0
*/
Expand Down
2 changes: 1 addition & 1 deletion src/EventSourcing/EventDispatcher.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package LightMVC/ASCMVC
* @author Andrew Caya
* @link https://github.com/lightmvc/ascmvc
* @version 3.1.1
* @version 3.1.2
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0.
* @since 3.0.0
*/
Expand Down
2 changes: 1 addition & 1 deletion src/EventSourcing/EventListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package LightMVC/ASCMVC
* @author Andrew Caya
* @link https://github.com/lightmvc/ascmvc
* @version 3.1.1
* @version 3.1.2
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0.
* @since 3.0.0
*/
Expand Down
2 changes: 1 addition & 1 deletion src/EventSourcing/EventListenerInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package LightMVC/ASCMVC
* @author Andrew Caya
* @link https://github.com/lightmvc/ascmvc
* @version 3.1.1
* @version 3.1.2
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0.
* @since 3.0.0
*/
Expand Down
2 changes: 1 addition & 1 deletion src/EventSourcing/EventLogger.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package LightMVC/ASCMVC
* @author Andrew Caya
* @link https://github.com/lightmvc/ascmvc
* @version 3.1.1
* @version 3.1.2
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0.
* @since 3.0.0
*/
Expand Down
2 changes: 1 addition & 1 deletion src/EventSourcing/Policy.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package LightMVC/ASCMVC
* @author Andrew Caya
* @link https://github.com/lightmvc/ascmvc
* @version 3.1.1
* @version 3.1.2
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0.
* @since 3.0.0
*/
Expand Down
2 changes: 1 addition & 1 deletion src/EventSourcing/ReadModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package LightMVC/ASCMVC
* @author Andrew Caya
* @link https://github.com/lightmvc/ascmvc
* @version 3.1.1
* @version 3.1.2
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0.
* @since 3.0.0
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Middleware/LazyLoadingMiddleware.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package LightMVC/ASCMVC
* @author Andrew Caya
* @link https://github.com/lightmvc/ascmvc
* @version 3.1.1
* @version 3.1.2
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0.
* @since 2.0.0
*
Expand Down
2 changes: 1 addition & 1 deletion src/Middleware/MiddlewareFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package LightMVC/ASCMVC
* @author Andrew Caya
* @link https://github.com/lightmvc/ascmvc
* @version 3.1.1
* @version 3.1.2
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0.
* @since 2.0.0
*
Expand Down
2 changes: 1 addition & 1 deletion src/Mvc/App.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @package LightMVC/ASCMVC
* @author Andrew Caya
* @link https://github.com/lightmvc/ascmvc
* @version 3.1.1
* @version 3.1.2
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0.
* @since 1.0.0
*/
Expand Down

0 comments on commit aefe012

Please sign in to comment.