Skip to content

Commit f40e07a

Browse files
authored
Merge pull request #14 from BeAPI/release/1.1.1
Release 1.1.1
2 parents ac790af + 73d5611 commit f40e07a

File tree

5 files changed

+38
-11
lines changed

5 files changed

+38
-11
lines changed

.distignore

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,37 @@
1+
# Directories
12
/.git
23
/.github
3-
/.wordpress-org
4+
/.vscode
45
/node_modules
56
/src
7+
/tests
68

9+
# Configuration files
710
.distignore
811
.editorconfig
912
.gitattributes
1013
.gitignore
1114
.plugin-data
1215
.wp-env.json
13-
CHANGELOG.md
14-
composer.json
15-
composer.lock
1616
grumphp.yml
17-
LICENSE.md
18-
package.json
19-
package-lock.json
2017
phpcs.xml.dist
2118
phpunit.xml.dist
2219
psalm.xml.dist
23-
README.md
20+
21+
# Dependency management
22+
composer.json
23+
composer.lock
24+
package.json
25+
package-lock.json
26+
27+
# Documentation
2428
CHANGELOG.md
2529
CONTRIBUTING.md
30+
README.md
31+
32+
# Development files
2633
webpack.config.js
2734
yarn.lock
35+
*.log
36+
*.map
37+
.DS_Store

.github/workflows/release.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,19 @@ jobs:
4545
php-version: 8.3
4646
- run: composer install --prefer-dist --no-dev -o --ignore-platform-reqs
4747

48+
- id: setup-node
49+
name: "Setup Node.js"
50+
uses: actions/setup-node@v3
51+
with:
52+
node-version: '20'
53+
cache: 'npm'
54+
55+
- id: build-js
56+
name: "Build JavaScript assets"
57+
run: |
58+
npm ci
59+
npm run build
60+
4861
- id: commit-and-push
4962
name: "Commit and push new TAG"
5063
run: |

.plugin-data

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"version": "1.1.0",
2+
"version": "1.1.1",
33
"slug": "beapi-acf-palette"
44
}

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
Nothing yet.
1111

12+
## [1.1.1] - 2026-01-12
13+
14+
- JavaScript build step in release workflow with `npm run build`
15+
1216
## [1.1.0] - 2026-01-12
1317

1418
### Added

beapi-acf-palette.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/*
33
Plugin Name: Be API - ACF Color Palette
4-
Version: 1.1.0
4+
Version: 1.1.1
55
Version Boilerplate: 3.5.0
66
Plugin URI: https://beapi.fr
77
Description: Add a new theme color palette selector field for Advanced Custom Fields.
@@ -35,7 +35,7 @@
3535
}
3636

3737
// Plugin constants
38-
define( 'BEAPI_ACF_PALETTE_VERSION', '1.1.0' );
38+
define( 'BEAPI_ACF_PALETTE_VERSION', '1.1.1' );
3939
define( 'BEAPI_ACF_PALETTE_VIEWS_FOLDER_NAME', 'beapi-acf-palette' );
4040

4141
// Plugin URL and PATH

0 commit comments

Comments
 (0)