Skip to content

Commit

Permalink
feat(core): Promote 5.3.x work and begin testing
Browse files Browse the repository at this point in the history
  • Loading branch information
sylus committed Nov 3, 2024
1 parent 99fb821 commit 551f4fc
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: build
on:
push:
branches:
- 5.2.x
- 5.3.x

# Environment variables available to all jobs and steps in this workflow
env:
Expand Down Expand Up @@ -31,7 +31,7 @@ jobs:
- uses: statcan/actions/composer@master
with:
args: require drupalwxt/wxt:5.2.x-dev#${{ github.sha }} --working-dir=./site-wxt
args: require drupalwxt/wxt:5.3.x-dev#${{ github.sha }} --working-dir=./site-wxt

- name: Build out the Drupal infrastructure
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: changelog
on:
push:
branches:
- 5.2.x
- 5.3.x
release:
types: [edited]

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ jobs:
uses: jacobtomlinson/gha-find-replace@master
with:
find: "\"drupalwxt/wxt\": \"[3-5]\\.[0-9]+\\.[0-9|x]+(-(beta|rc|dev)[0-9]?)?\""
replace: "\"drupalwxt/wxt\": \"5.2.x-dev\""
replace: "\"drupalwxt/wxt\": \"5.3.x-dev\""
exclude: ".git/**"
include: "site-wxt/**"

Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CHANGELOG

## v5.2.4 (In Development)
## v5.3.0 (In Development)

- Build Infrastructure
- N/A
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Extended with code and lessons learned by the **[Acquia Team][acquia]** over at

[acquia]: https://acquia.com
[blt]: https://github.com/acquia/blt
[changelog]: https://github.com/drupalwxt/wxt/blob/5.2.x/CHANGELOG.md
[changelog]: https://github.com/drupalwxt/wxt/blob/5.3.x/CHANGELOG.md
[containers]: https://hub.docker.com/r/drupalwxt/site-wxt
[containers-scaffold]: https://github.com/drupalwxt/docker-scaffold
[contributors]: https://github.com/drupalwxt/wxt/graphs/contributors
Expand All @@ -111,7 +111,7 @@ Extended with code and lessons learned by the **[Acquia Team][acquia]** over at
[issue-drupal]: https://drupal.org/project/issues/wxt
[github-helm-drupal]: https://github.com/drupalwxt/helm-drupal
[lightning]: https://github.com/acquia/lightning
[readme]: https://github.com/drupalwxt/wxt/blob/5.2.x/README.md
[readme]: https://github.com/drupalwxt/wxt/blob/5.3.x/README.md
[spec]: https://www.canada.ca/en/treasury-board-secretariat/services/government-communications/canada-content-information-architecture-specification.html
[spec-canada]: https://wet-boew.github.io/GCWeb/index-en.html
[standard_accessibility]: https://www.tbs-sct.gc.ca/pol/doc-eng.aspx?id=23601
Expand Down
2 changes: 1 addition & 1 deletion src/Composer/ConfigureLegacyProject.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public static function execute(Event $event) {
$target = new JsonFile($arguments[0] . '/composer.json');
$project = $target->read();

$project['require']["drupalwxt/wxt"] = "5.2.x";
$project['require']["drupalwxt/wxt"] = "5.3.x";
$project['require-dev'] = new \stdClass();
$project['repositories'][] = [
'type' => 'composer',
Expand Down

0 comments on commit 551f4fc

Please sign in to comment.