Skip to content

Commit

Permalink
Merge pull request #74 from the-events-calendar/fix/build-wp-version
Browse files Browse the repository at this point in the history
Update WP version in build file to 5.6
  • Loading branch information
lucatume authored Feb 18, 2021
2 parents c153b63 + 2525579 commit 6a5a946
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ 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.5.24] - 2021-02-18
### Changed
- Update the WordPress image version, in the `tric-stack.build.yml` file, from `5.5` to `5.6` to fix CI build issues.

## [0.5.23] - 2021-01-20
### Changed
- Add an argument, to the `reset` command, to remove the default WordPress (`/_wordpress`) installation directory
Expand Down
2 changes: 1 addition & 1 deletion tric
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ $args = args( [
] );

$cli_name = basename( $argv[0] );
const CLI_VERSION = '0.5.23';
const CLI_VERSION = '0.5.24';

$cli_header = implode( ' - ', [
light_cyan( $cli_name ) . ' version ' . light_cyan( CLI_VERSION ),
Expand Down
2 changes: 1 addition & 1 deletion tric-stack.build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ services:
dockerfile: ${TRIC_WORDPRESS_DOCKERFILE:-Dockerfile.debug}
args:
# Fix the version of the WordPress image to avoid issues w/ out-of-date database dumps.
WORDPRESS_IMAGE_VERSION: 5.5-apache
WORDPRESS_IMAGE_VERSION: 5.6-apache
# Allow the image to be built creating the user and group ID for the host machine user.
DOCKER_RUN_UID: ${DOCKER_RUN_UID:-0}
DOCKER_RUN_GID: ${DOCKER_RUN_GID:-0}
Expand Down

0 comments on commit 6a5a946

Please sign in to comment.