Skip to content

Commit bf7bb6a

Browse files
committed
Update LICENSE
1 parent 0231ab8 commit bf7bb6a

File tree

8 files changed

+631
-290
lines changed

8 files changed

+631
-290
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to this project will be documented in this file, per [the Keep a Changelog standard](http://keepachangelog.com/).
44

5+
## [0.7.1] - 2024-12-07
6+
7+
### Changed
8+
9+
- License.
10+
511
## [0.7.0] - 2024-12-03
612

713
### Added

LICENSE

+617-282
Large diffs are not rendered by default.

accordion-block.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
* Plugin URI: https://pixelalbatross.pt/?utm_source=wp-plugins&utm_medium=accordion-block&utm_campaign=plugin-uri
66
* Requires at least: 6.1
77
* Requires PHP: 7.4
8-
* Version: 0.7.0
8+
* Version: 0.7.1
99
* Author: Pixel Albatross
1010
* Author URI: https://pixelalbatross.pt/?utm_source=wp-plugins&utm_medium=accordion-block&utm_campaign=author-uri
11-
* License: GPL-2.0-or-later
12-
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
11+
* License: GPL-3.0-or-later
12+
* License URI: https://spdx.org/licenses/GPL-3.0-or-later.html
1313
* Update URI: https://pixelalbatross.pt/
1414
* GitHub Plugin URI: https://github.com/pixelalbatross/accordion-block
1515
* Text Domain: accordion-block

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "pixelalbatross/accordion-block",
33
"type": "wordpress-plugin",
4-
"license": "GPL-2.0-or-later",
4+
"license": "GPL-3.0-or-later",
55
"authors": [
66
{
77
"name": "Pixel Albatross",

languages/accordion-block.pot

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright (C) 2024 Pixel Albatross
2-
# This file is distributed under the GPL-2.0-or-later.
2+
# This file is distributed under the GPL-3.0-or-later.
33
msgid ""
44
msgstr ""
55
"Project-Id-Version: Accordion Block 0.6.0\n"

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"type": "git",
1818
"url": "https://github.com/pixelalbatross/accordion-block"
1919
},
20-
"license": "GPL-2.0-or-later",
20+
"license": "GPL-3.0-or-later",
2121
"main": "build/accordion/index.js",
2222
"scripts": {
2323
"build": "wp-scripts build",

src/accordion-item/edit.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import { applyFilters } from '@wordpress/hooks';
2222
*
2323
* @return {WPElement} Element to render.
2424
*/
25-
export default function Edit({ attributes, setAttributes, isSelected }) {
25+
export default function AccordionItemEdit({ attributes, setAttributes, isSelected }) {
2626
const { title, isOpen } = attributes;
2727
const { clientId } = useBlockEditContext();
2828
const hasSelectedInnerBlock = useSelect((select) =>

src/accordion-item/save.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ import { InnerBlocks } from '@wordpress/block-editor';
1212
*
1313
* @return {WPElement} Element to render.
1414
*/
15-
export default function Save() {
15+
export default function AccordionItemSave() {
1616
return <InnerBlocks.Content />;
1717
}

0 commit comments

Comments
 (0)