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 3d83ce2 commit 9d37428
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 6 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 @@ -46,7 +46,7 @@ Install `pop-console` using Composer.
Or, require it in your composer.json file

"require": {
"popphp/pop-console" : "^4.2.0"
"popphp/pop-console" : "^4.2.3"
}

[Top](#pop-console)
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
],
"require": {
"php": ">=8.2.0",
"popphp/popphp": "^4.3.5"
"popphp/popphp": "^4.3.6"
},
"require-dev": {
"phpunit/phpunit": "^11.0.0"
Expand Down
2 changes: 1 addition & 1 deletion src/Color.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.2.0
* @version 4.2.3
*/
class Color
{
Expand Down
2 changes: 1 addition & 1 deletion src/Command.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.2.0
* @version 4.2.3
*/
class Command
{
Expand Down
2 changes: 1 addition & 1 deletion src/Console.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.2.0
* @version 4.2.3
*/
class Console
{
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.2.0
* @version 4.2.3
*/
class Exception extends \Exception {}

0 comments on commit 9d37428

Please sign in to comment.