Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
nicksagona committed Nov 29, 2024
1 parent 32e2430 commit f763225
Show file tree
Hide file tree
Showing 12 changed files with 17 additions and 12 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}

#- name: Validate composer.json and composer.lock
# run: composer validate

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Install `pop-view` using Composer.
Or, require it in your composer.json file

"require": {
"popphp/pop-view" : "^4.0.0"
"popphp/pop-view" : "^4.0.2"
}

[Top](#pop-view)
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
],
"require": {
"php": ">=8.2.0",
"popphp/pop-filter": "^4.0.1",
"popphp/pop-utils": "^2.1.2"
"popphp/pop-filter": "^4.0.2",
"popphp/pop-utils": "^2.1.3"
},
"require-dev": {
"phpunit/phpunit": "^11.0.0"
Expand Down
2 changes: 1 addition & 1 deletion src/Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.0.0
* @version 4.0.2
*/
class Exception extends \Exception {}
2 changes: 1 addition & 1 deletion src/Template/AbstractTemplate.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.0.0
* @version 4.0.2
*/
abstract class AbstractTemplate implements TemplateInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Template/Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.0.0
* @version 4.0.2
*/
class Exception extends \Exception {}
2 changes: 1 addition & 1 deletion src/Template/File.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.0.0
* @version 4.0.2
*/
class File extends AbstractTemplate
{
Expand Down
2 changes: 1 addition & 1 deletion src/Template/Stream.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.0.0
* @version 4.0.2
*/
class Stream extends AbstractTemplate
{
Expand Down
2 changes: 1 addition & 1 deletion src/Template/Stream/Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.0.0
* @version 4.0.2
*/
class Exception extends \Exception {}
2 changes: 1 addition & 1 deletion src/Template/Stream/Parser.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.0.0
* @version 4.0.2
*/
class Parser
{
Expand Down
2 changes: 1 addition & 1 deletion src/Template/TemplateInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.0.0
* @version 4.0.2
*/
interface TemplateInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/View.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* @author Nick Sagona, III <[email protected]>
* @copyright Copyright (c) 2009-2025 NOLA Interactive, LLC.
* @license https://www.popphp.org/license New BSD License
* @version 4.0.0
* @version 4.0.2
*/
class View extends Utils\ArrayObject
{
Expand Down

0 comments on commit f763225

Please sign in to comment.