diff --git a/.deployignore b/.deployignore index 7f62db9..67cb4e5 100644 --- a/.deployignore +++ b/.deployignore @@ -33,6 +33,8 @@ yarn.lock *.zip .wp-env.json phpstan.neon.dist +.deployignore +CHANGELOG.md node_modules tests diff --git a/.distignore b/.distignore index 7f62db9..67cb4e5 100644 --- a/.distignore +++ b/.distignore @@ -33,6 +33,8 @@ yarn.lock *.zip .wp-env.json phpstan.neon.dist +.deployignore +CHANGELOG.md node_modules tests diff --git a/.github/workflows/deploy-to-wordpress.yml b/.github/workflows/deploy-to-wordpress.yml index 16b43b2..5db0703 100644 --- a/.github/workflows/deploy-to-wordpress.yml +++ b/.github/workflows/deploy-to-wordpress.yml @@ -21,9 +21,8 @@ jobs: coverage: none - name: Install PHP dependencies - uses: ramsey/composer-install@v2 - with: - composer-options: "--no-dev --optimize-autoloader" + run: | + composer install --no-dev --optimize-autoloader - name: WordPress Plugin Deploy uses: 10up/action-wordpress-plugin-deploy@stable @@ -39,13 +38,13 @@ jobs: composer archive -vvv --format=zip --file="plugin-build/wp-graphql-buddypress" - name: Upload artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: wp-graphql-buddypress path: plugin-build/wp-graphql-buddypress.zip - name: Upload release asset - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: files: plugin-build/wp-graphql-buddypress.zip env: diff --git a/CHANGELOG.md b/CHANGELOG.md index f75638e..d9b45e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.1.2] Unpublished + +### Updated + +- chore: removing development related files from SVN. +- CI: update packages from the `deploy-to-wordpress` action. + + ## [0.1.1] 2024-05-06 ### Added diff --git a/README.md b/README.md index 44fc298..0230ada 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ WPGraphQL BuddyPress is a free and open-source extension for the WPGraphQL plugi ## System Requirements * PHP >= 8.0+ -* WP >= 5.9+ +* WP >= 6.1+ * WPGraphQL >= latest * BuddyPress >= latest diff --git a/composer.json b/composer.json index c081236..2123d25 100644 --- a/composer.json +++ b/composer.json @@ -109,6 +109,7 @@ "*.dist", "*.cache", ".phpcs.xml", + "composer.json", "composer.lock", ".editorconfig", "CHANGELOG.md",