Skip to content

Commit 8674cf6

Browse files
committed
Change plugin update checker to look for tags
1 parent 3149349 commit 8674cf6

4 files changed

Lines changed: 37 additions & 4 deletions

File tree

.gitattributes

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Directories
2+
/.git export-ignore
3+
/.github export-ignore
4+
/assets export-ignore
5+
/node_modules export-ignore
6+
/release export-ignore
7+
/src export-ignore
8+
/tests export-ignore
9+
10+
# Files
11+
/.* export-ignore
12+
/CHANGELOG.md export-ignore
13+
/composer.json export-ignore
14+
/composer.lock export-ignore
15+
/CONTRIBUTING.md export-ignore
16+
/CREDITS.md export-ignore
17+
/LICENSE.md export-ignore
18+
/package-lock.json export-ignore
19+
/package.json export-ignore
20+
/phpcs.xml.dist export-ignore
21+
/phpstan.neon.dist export-ignore
22+
/phpunit.xml.dist export-ignore
23+
/postcss.config.js export-ignore
24+
/README.md export-ignore
25+
/stylelint.config.js export-ignore
26+
/webpack.config.js export-ignore

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
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.8.0] - 2025-10-26
6+
7+
### Changed
8+
9+
- Change plugin update checker to look for tags.
10+
- Update dependencies.
11+
512
## [0.7.4] - 2025-10-16
613

714
### Changed

accordion-block.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Plugin URI: https://pixelalbatross.pt/?utm_source=wp-plugins&utm_medium=accordion-block&utm_campaign=plugin-uri
66
* Requires at least: 6.7
77
* Requires PHP: 7.4
8-
* Version: 0.7.4
8+
* Version: 0.8.0
99
* Author: Pixel Albatross
1010
* Author URI: https://pixelalbatross.pt/?utm_source=wp-plugins&utm_medium=accordion-block&utm_campaign=author-uri
1111
* License: GPL-3.0-or-later
@@ -34,7 +34,7 @@
3434
'https://github.com/pixelalbatross/accordion-block/',
3535
__FILE__,
3636
'accordion-block'
37-
)->setBranch( 'main' );
37+
);
3838

3939
/**
4040
* Registers the block using the metadata loaded from the `block.json` file.

vendor/composer/installed.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
'name' => 'pixelalbatross/accordion-block',
44
'pretty_version' => 'dev-main',
55
'version' => 'dev-main',
6-
'reference' => 'c56e601424efe49214cad77ca692e7ba0b760931',
6+
'reference' => '3149349a1f4ca6ce438432232b933ff1c8ec0606',
77
'type' => 'wordpress-plugin',
88
'install_path' => __DIR__ . '/../../',
99
'aliases' => array(),
@@ -13,7 +13,7 @@
1313
'pixelalbatross/accordion-block' => array(
1414
'pretty_version' => 'dev-main',
1515
'version' => 'dev-main',
16-
'reference' => 'c56e601424efe49214cad77ca692e7ba0b760931',
16+
'reference' => '3149349a1f4ca6ce438432232b933ff1c8ec0606',
1717
'type' => 'wordpress-plugin',
1818
'install_path' => __DIR__ . '/../../',
1919
'aliases' => array(),

0 commit comments

Comments
 (0)