Skip to content

Commit 3f81d43

Browse files
committed
1.2.0
1 parent d60dad7 commit 3f81d43

File tree

10 files changed

+21
-12
lines changed

10 files changed

+21
-12
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,17 @@ All notable changes to this project will be documented in this file. Dates are d
44

55
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
66

7+
#### [v1.2.0](https://github.com/ideasonpurpose/docker-wordpress-dev/compare/v1.1.1...v1.2.0)
8+
9+
- Check for .repositories before sorting. Closes #68 [`#68`](https://github.com/ideasonpurpose/docker-wordpress-dev/issues/68)
10+
- Bump WP to 6.3.1 [`d60dad7`](https://github.com/ideasonpurpose/docker-wordpress-dev/commit/d60dad775861fca86d0915c098951931d99525b2)
11+
- scripts fix, postmysql to postdb [`a1de782`](https://github.com/ideasonpurpose/docker-wordpress-dev/commit/a1de782bb6b21137d32b4b2ce6d4579c64080cb7)
12+
- Update sass comment in default config [`4567ccb`](https://github.com/ideasonpurpose/docker-wordpress-dev/commit/4567ccb709b250a39383387312569afb97e114d4)
13+
714
#### [v1.1.1](https://github.com/ideasonpurpose/docker-wordpress-dev/compare/v1.1.0...v1.1.1)
815

16+
> 24 August 2023
17+
918
- scripts, yml anchors prettier config Close #66 #67 [`#66`](https://github.com/ideasonpurpose/docker-wordpress-dev/issues/66)
1019
- update badges [`bffcccd`](https://github.com/ideasonpurpose/docker-wordpress-dev/commit/bffcccdf7808863ee3d058d007c9a2633505573e)
1120
- typo [`b111c8f`](https://github.com/ideasonpurpose/docker-wordpress-dev/commit/b111c8fbb431a37646211aff2c6695c9604f41aa)

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Manual updates also must change wp-version.json
66
FROM wordpress:6.3.1-php8.2-apache
77

8-
LABEL version="1.1.1"
8+
LABEL version="1.2.0"
99

1010
# Add `wp` user and group, then add `www-data` user to `wp` group
1111
RUN addgroup --gid 1000 wp \

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# WordPress local development with Docker
22

33
<h4>
4-
Version 1.1.1
4+
Version 1.2.0
55
<!-- WPVERSION -->- WordPress 6.3.1
66
</h4>
77

@@ -23,7 +23,7 @@ To update an existing project or start a new one, run the following commands in
2323
##### macOS, Linux & Windows PowerShell
2424

2525
```
26-
docker run --rm -it -v ${PWD}:/usr/src/site ideasonpurpose/wordpress:1.1.1 init
26+
docker run --rm -it -v ${PWD}:/usr/src/site ideasonpurpose/wordpress:1.2.0 init
2727
```
2828

2929
Followed by:
@@ -37,7 +37,7 @@ _NOTE: If **~/.composer** doesn't exist, mounting the Docker volume will create
3737
##### Windows Command Prompt
3838

3939
```
40-
docker run --rm -it -v %cd%:/usr/src/site ideasonpurpose/wordpress:1.1.1 init
40+
docker run --rm -it -v %cd%:/usr/src/site ideasonpurpose/wordpress:1.2.0 init
4141
```
4242

4343
- `init` command copies all the necessary tooling files into place and sets up the default theme directory structure.

bin/docker-entrypoint-iop.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This script is a part of the ideasonpurpose/docker-wordpress-dev project
44
# https://github.com/ideasonpurpose/docker-wordpress-dev
55
#
6-
# Version: 1.1.1
6+
# Version: 1.2.0
77

88
RESET="\033[0m"
99
BOLD="\033[1m"

bin/getting-started.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This script is a part of the ideasonpurpose/docker-wordpress-dev project
44
# https://github.com/ideasonpurpose/docker-wordpress-dev
55
#
6-
# Version: 1.1.1
6+
# Version: 1.2.0
77

88
# Getting Started message
99

bin/permissions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This script is a part of the ideasonpurpose/docker-wordpress-dev project
44
# https://github.com/ideasonpurpose/docker-wordpress-dev
55
#
6-
# Version: 1.1.1
6+
# Version: 1.2.0
77

88
# This script corrects permissions of known files in our WordPress boilerplate.
99
# The script is run from Docker as root, with a $OWNER_GROUP envvar set to "$UID:$GID"

bin/pull.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This script is a part of the ideasonpurpose/docker-wordpress-dev project
44
# https://github.com/ideasonpurpose/docker-wordpress-dev
55
#
6-
# Version: 1.1.1
6+
# Version: 1.2.0
77

88
# style helpers
99
RESET="\033[0m"

bin/wp-init.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This script is a part of the ideasonpurpose/docker-wordpress-dev project
44
# https://github.com/ideasonpurpose/docker-wordpress-dev
55
#
6-
# Version: 1.1.1
6+
# Version: 1.2.0
77

88
# This is a WordPress specific boilerplate assembler
99
# After running this script, the target directory will be fully configured for local WordPress

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "docker-wordpress-dev",
3-
"version": "1.1.1",
3+
"version": "1.2.0",
44
"private": true,
55
"description": "Docker-based local development environment for WordPress projects",
66
"repository": "https://github.com/ideasonpurpose/docker-wordpress-dev",

0 commit comments

Comments
 (0)