Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 47 additions & 18 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,56 @@
version: 2

updates:
- package-ecosystem: github-actions
# Composer: 1x weekly for minor/patch, 1x monthly for major.
- package-ecosystem: 'composer'
directory: '/'
schedule:
interval: weekly
open-pull-requests-limit: 10
labels:
- Dependencies
interval: 'weekly'
cooldown:
semver-major-days: 30
semver-minor-days: 7
semver-patch-days: 7
groups:
composer-dev-minor-patch:
dependency-type: 'development'
update-types: [minor, patch]
composer-dev-major:
dependency-type: 'development'
update-types: [major]
composer-minor-patch:
dependency-type: 'production'
update-types: [minor, patch]
# We don't bundle minor or major production assets, so they're tested individually.
composer-patch:
dependency-type: 'production'
update-types: [patch]

- package-ecosystem: npm
directory: '/'
# NPM: 1x weekly for minor/patch, 1x monthly for major.
- package-ecosystem: 'npm'
directories:
- '/'
schedule:
interval: weekly
open-pull-requests-limit: 10
versioning-strategy: increase
labels:
- Dependencies
interval: 'weekly'
cooldown:
semver-major-days: 30
semver-minor-days: 7
semver-patch-days: 7
groups:
npm-dev-minor-patch:
dependency-type: 'development'
update-types: [minor, patch]
npm-prod-minor-patch:
dependency-type: 'production'
update-types: [minor, patch]
npm-dev-major:
dependency-type: 'development'
update-types: [major]

- package-ecosystem: composer
# GitHub Actions: 1x weekly.
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
interval: weekly
open-pull-requests-limit: 10
versioning-strategy: increase
labels:
- Dependencies
interval: 'weekly'
groups:
github-actions-updates:
patterns: ['*']
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## 1.1.0-beta.1
## 1.0.0

- Feat: Refactor for WPCS and best practices

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
"szepeviktor/phpstan-wordpress": "^2.0.2",
"wp-coding-standards/wpcs": "^3.1",
"wp-phpunit/wp-phpunit": "^6.5",
"wpackagist-plugin/plugin-check": "~1.8.0",
"wpackagist-plugin/plugin-check": "~1.6.0",
"yoast/phpunit-polyfills": "^4.0"
},
"scripts": {
Expand Down
66 changes: 33 additions & 33 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions onesearch.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: onesearch
* Domain Path: /languages
* Version: 1.1.0-beta.1
* Version: 1.0.0
* Requires PHP: 8.0
* Requires at least: 6.8
* Tested up to: 6.9
Expand All @@ -31,7 +31,7 @@ function constants(): void {
/**
* Version of the plugin.
*/
define( 'ONESEARCH_VERSION', '1.1.0-beta.1' );
define( 'ONESEARCH_VERSION', '1.0.0' );

/**
* Root path to the plugin directory.
Expand Down
Loading
Loading