Skip to content

Commit

Permalink
Bump license to GPL v3+
Browse files Browse the repository at this point in the history
Since the plugin includes resources under Apache 2.0, we need to bump to GPL 3.
  • Loading branch information
justintadlock committed Jul 12, 2023
1 parent c032033 commit c6e85ce
Show file tree
Hide file tree
Showing 71 changed files with 702 additions and 383 deletions.
940 changes: 627 additions & 313 deletions LICENSE.md

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,9 @@ But everything changed when WordPress launched the block editor and site editing
With that change---and this new block plugin---users no longer need to rely on their theme author to keep the script updated. They can simply install this X3P0 - breadcrumbs and put the block wherever they want. Theme authors can still integrate with it, but they no longer have to worry about maintaining an updated codebase for their breadcrumbs.

Today, this breadcrumbs script is finally what it was always meant to be. It took 14 years or so for it to become a reality, but we're finally here.

## License

X3P0 Breadcrumbs is licensed under the GPL version 3.0 or later.

The project includes resources from [Material Icons](https://fonts.google.com/icons), which are licensed under [Apache 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt).
4 changes: 2 additions & 2 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ Requires at least: 6.2
Tested up to: 6.3
Requires PHP: 7.4
Stable tag: 1.0.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.htm
License: GPL-3.0-or-later
License URI: https://www.gnu.org/licenses/gpl-3.0.html

Breadcrumbs block for WordPress that supports Schema.org HTML5-valid microdata.

Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"version": "1.0.0",
"description": "Breadcrumbs block for WordPress.",
"author": "Justin Tadlock",
"license": "GPL-2.0+",
"homepage": "https://github.com/x3p0-dev/x3p0-breadcrumbs",
"scripts": {
"start": "wp-scripts start --webpack-src-dir=resources --output-path=public",
Expand Down
2 changes: 1 addition & 1 deletion resources/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2023, Justin Tadlock
* @license GPL-2.0-or-later
* @license GPL-3.0-or-later
*/

// Import stylesheets.
Expand Down
2 changes: 1 addition & 1 deletion resources/js/block-edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2023, Justin Tadlock
* @license GPL-2.0-or-later
* @license GPL-3.0-or-later
*/

// Internal dependencies.
Expand Down
2 changes: 1 addition & 1 deletion resources/js/block-icon.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2023, Justin Tadlock
* @license GPL-2.0-or-later
* @license GPL-3.0-or-later
*/

export default (
Expand Down
2 changes: 1 addition & 1 deletion resources/js/control-home-prefix.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2023, Justin Tadlock
* @license GPL-2.0-or-later
* @license GPL-3.0-or-later
*/

// Internal dependencies.
Expand Down
2 changes: 1 addition & 1 deletion resources/js/control-separator.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2023, Justin Tadlock
* @license GPL-2.0-or-later
* @license GPL-3.0-or-later
*/

// Internal dependencies.
Expand Down
2 changes: 1 addition & 1 deletion resources/js/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2023, Justin Tadlock
* @license GPL-2.0-or-later
* @license GPL-3.0-or-later
*/

import { __ } from '@wordpress/i18n';
Expand Down
2 changes: 1 addition & 1 deletion src/Autoload.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2009-2023, Justin Tadlock
* @license https://www.gnu.org/licenses/gpl-2.0.html GPL-2.0-or-later
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later
* @link https://github.com/x3p0-dev/x3p0-breadcrumbs
*/

Expand Down
2 changes: 1 addition & 1 deletion src/Block.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2009-2023, Justin Tadlock
* @license https://www.gnu.org/licenses/gpl-2.0.html GPL-2.0-or-later
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later
* @link https://github.com/x3p0-dev/x3p0-breadcrumbs
*/

Expand Down
2 changes: 1 addition & 1 deletion src/Breadcrumbs.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2009-2023, Justin Tadlock
* @license https://www.gnu.org/licenses/gpl-2.0.html GPL-2.0-or-later
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later
* @link https://github.com/x3p0-dev/x3p0-breadcrumbs
*/

Expand Down
2 changes: 1 addition & 1 deletion src/Build/Base.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2009-2023 Justin Tadlock
* @link https://github.com/x3p0-dev/x3p0-breadcrumbs
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later
*/

namespace X3P0\Breadcrumbs\Build;
Expand Down
2 changes: 1 addition & 1 deletion src/Build/MapRewriteTags.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2009-2023 Justin Tadlock
* @link https://github.com/x3p0-dev/x3p0-breadcrumbs
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later
*/

namespace X3P0\Breadcrumbs\Build;
Expand Down
2 changes: 1 addition & 1 deletion src/Build/Network.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2009-2023 Justin Tadlock
* @link https://github.com/x3p0-dev/x3p0-breadcrumbs
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later
*/

namespace X3P0\Breadcrumbs\Build;
Expand Down
2 changes: 1 addition & 1 deletion src/Build/Paged.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2009-2023 Justin Tadlock
* @link https://github.com/x3p0-dev/x3p0-breadcrumbs
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later
*/

namespace X3P0\Breadcrumbs\Build;
Expand Down
2 changes: 1 addition & 1 deletion src/Build/Path.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2009-2023 Justin Tadlock
* @link https://github.com/x3p0-dev/x3p0-breadcrumbs
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later
*/

namespace X3P0\Breadcrumbs\Build;
Expand Down
2 changes: 1 addition & 1 deletion src/Build/Post.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2009-2023 Justin Tadlock
* @link https://github.com/x3p0-dev/x3p0-breadcrumbs
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later
*/

namespace X3P0\Breadcrumbs\Build;
Expand Down
2 changes: 1 addition & 1 deletion src/Build/PostAncestors.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2009-2023 Justin Tadlock
* @link https://github.com/x3p0-dev/x3p0-breadcrumbs
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later
*/

namespace X3P0\Breadcrumbs\Build;
Expand Down
2 changes: 1 addition & 1 deletion src/Build/PostHierarchy.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2009-2023 Justin Tadlock
* @link https://github.com/x3p0-dev/x3p0-breadcrumbs
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later
*/

namespace X3P0\Breadcrumbs\Build;
Expand Down
2 changes: 1 addition & 1 deletion src/Build/PostTerms.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2009-2023 Justin Tadlock
* @link https://github.com/x3p0-dev/x3p0-breadcrumbs
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later
*/

namespace X3P0\Breadcrumbs\Build;
Expand Down
2 changes: 1 addition & 1 deletion src/Build/PostType.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2009-2023 Justin Tadlock
* @link https://github.com/x3p0-dev/x3p0-breadcrumbs
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later
*/

namespace X3P0\Breadcrumbs\Build;
Expand Down
2 changes: 1 addition & 1 deletion src/Build/RewriteFront.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2009-2023 Justin Tadlock
* @link https://github.com/x3p0-dev/x3p0-breadcrumbs
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later
*/

namespace X3P0\Breadcrumbs\Build;
Expand Down
2 changes: 1 addition & 1 deletion src/Build/Term.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2009-2023 Justin Tadlock
* @link https://github.com/x3p0-dev/x3p0-breadcrumbs
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later
*/

namespace X3P0\Breadcrumbs\Build;
Expand Down
2 changes: 1 addition & 1 deletion src/Build/TermAncestors.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2009-2023 Justin Tadlock
* @link https://github.com/x3p0-dev/x3p0-breadcrumbs
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later
*/

namespace X3P0\Breadcrumbs\Build;
Expand Down
2 changes: 1 addition & 1 deletion src/Contracts/Bootable.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2009-2023, Justin Tadlock
* @license https://www.gnu.org/licenses/gpl-2.0.html GPL-2.0-or-later
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later
* @link https://github.com/x3p0-dev/x3p0-breadcrumbs
*/

Expand Down
2 changes: 1 addition & 1 deletion src/Contracts/Breadcrumbs.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2009-2023 Justin Tadlock
* @link https://github.com/x3p0-dev/x3p0-breadcrumbs
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later
*/

namespace X3P0\Breadcrumbs\Contracts;
Expand Down
2 changes: 1 addition & 1 deletion src/Contracts/Build.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2009-2023 Justin Tadlock
* @link https://github.com/x3p0-dev/x3p0-breadcrumbs
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later
*/

namespace X3P0\Breadcrumbs\Contracts;
Expand Down
2 changes: 1 addition & 1 deletion src/Contracts/Crumb.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2009-2023 Justin Tadlock
* @link https://github.com/x3p0-dev/x3p0-breadcrumbs
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later
*/

namespace X3P0\Breadcrumbs\Contracts;
Expand Down
2 changes: 1 addition & 1 deletion src/Contracts/Query.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2009-2023 Justin Tadlock
* @link https://github.com/x3p0-dev/x3p0-breadcrumbs
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later
*/

namespace X3P0\Breadcrumbs\Contracts;
Expand Down
2 changes: 1 addition & 1 deletion src/Crumb/Archive.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2009-2023 Justin Tadlock
* @link https://github.com/x3p0-dev/x3p0-breadcrumbs
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later
*/

namespace X3P0\Breadcrumbs\Crumb;
Expand Down
2 changes: 1 addition & 1 deletion src/Crumb/Author.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2009-2023 Justin Tadlock
* @link https://github.com/x3p0-dev/x3p0-breadcrumbs
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later
*/

namespace X3P0\Breadcrumbs\Crumb;
Expand Down
2 changes: 1 addition & 1 deletion src/Crumb/Base.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2009-2023 Justin Tadlock
* @link https://github.com/x3p0-dev/x3p0-breadcrumbs
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later
*/

namespace X3P0\Breadcrumbs\Crumb;
Expand Down
2 changes: 1 addition & 1 deletion src/Crumb/Day.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2009-2023 Justin Tadlock
* @link https://github.com/x3p0-dev/x3p0-breadcrumbs
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later
*/

namespace X3P0\Breadcrumbs\Crumb;
Expand Down
2 changes: 1 addition & 1 deletion src/Crumb/Error.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2009-2023 Justin Tadlock
* @link https://github.com/x3p0-dev/x3p0-breadcrumbs
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later
*/

namespace X3P0\Breadcrumbs\Crumb;
Expand Down
2 changes: 1 addition & 1 deletion src/Crumb/Home.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2009-2023 Justin Tadlock
* @link https://github.com/x3p0-dev/x3p0-breadcrumbs
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later
*/

namespace X3P0\Breadcrumbs\Crumb;
Expand Down
2 changes: 1 addition & 1 deletion src/Crumb/Minute.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2009-2023 Justin Tadlock
* @link https://github.com/x3p0-dev/x3p0-breadcrumbs
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later
*/

namespace X3P0\Breadcrumbs\Crumb;
Expand Down
2 changes: 1 addition & 1 deletion src/Crumb/MinuteHour.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2009-2023 Justin Tadlock
* @link https://github.com/x3p0-dev/x3p0-breadcrumbs
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later
*/

namespace X3P0\Breadcrumbs\Crumb;
Expand Down
2 changes: 1 addition & 1 deletion src/Crumb/Month.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2009-2023 Justin Tadlock
* @link https://github.com/x3p0-dev/x3p0-breadcrumbs
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later
*/

namespace X3P0\Breadcrumbs\Crumb;
Expand Down
2 changes: 1 addition & 1 deletion src/Crumb/Network.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2009-2023 Justin Tadlock
* @link https://github.com/x3p0-dev/x3p0-breadcrumbs
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later
*/

namespace X3P0\Breadcrumbs\Crumb;
Expand Down
2 changes: 1 addition & 1 deletion src/Crumb/Paged.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2009-2023 Justin Tadlock
* @link https://github.com/x3p0-dev/x3p0-breadcrumbs
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later
*/

namespace X3P0\Breadcrumbs\Crumb;
Expand Down
2 changes: 1 addition & 1 deletion src/Crumb/PagedComments.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2009-2023 Justin Tadlock
* @link https://github.com/x3p0-dev/x3p0-breadcrumbs
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later
*/

namespace X3P0\Breadcrumbs\Crumb;
Expand Down
2 changes: 1 addition & 1 deletion src/Crumb/PagedSingular.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2009-2023 Justin Tadlock
* @link https://github.com/x3p0-dev/x3p0-breadcrumbs
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later
*/

namespace X3P0\Breadcrumbs\Crumb;
Expand Down
2 changes: 1 addition & 1 deletion src/Crumb/Post.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @author Justin Tadlock <justintadlock@gmail.com>
* @copyright Copyright (c) 2009-2023 Justin Tadlock
* @link https://github.com/x3p0-dev/x3p0-breadcrumbs
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL-3.0-or-later
*/

namespace X3P0\Breadcrumbs\Crumb;
Expand Down
Loading

0 comments on commit c6e85ce

Please sign in to comment.