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 f2c12be commit 82b6ae4
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 7 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 @@ -31,7 +31,7 @@ Install `pop-dom` using Composer.
Or, require it in your composer.json file

"require": {
"popphp/pop-dom" : "^4.0.0"
"popphp/pop-dom" : "^4.0.4"
}

[Top](#pop-dom)
Expand Down
2 changes: 1 addition & 1 deletion src/AbstractNode.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,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.4
*/
abstract class AbstractNode implements NodeInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Child.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,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.4
*/
class Child extends AbstractNode
{
Expand Down
2 changes: 1 addition & 1 deletion src/Document.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.4
*/
class Document extends AbstractNode
{
Expand Down
2 changes: 1 addition & 1 deletion src/DomIterator.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.4
*/
class DomIterator implements \RecursiveIterator
{
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.4
*/
class Exception extends \Exception {}
2 changes: 1 addition & 1 deletion src/NodeInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,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.4
*/
interface NodeInterface
{
Expand Down

0 comments on commit 82b6ae4

Please sign in to comment.