Skip to content

Commit 9141f7c

Browse files
committed
Released v1.2.0.
* **[2018-02-04]** Upgraded the stack: * PHP v7.2.3 * Nginx v1.10.3 [unchanged] * Redis v3.2.11 * PostgreSQL v9.6.7 * MariaDB 10.3.4 [unchanged] * **[2018-02-21]** Added support for multiple nginx vhosts. * **[2018-02-21]** Added support for SSL certificates and unlimited custom nginx configuration. * **[2018-02-21]** Added the bcmath PHP extension. * **[2018-02-21]** [internal] Created a Makefile for the creation of release files. * **[2018-02-21]** [internal] Consolidated the common docker files.
1 parent b5f45b1 commit 9141f7c

File tree

2 files changed

+35
-4
lines changed

2 files changed

+35
-4
lines changed

CHANGELOG.md

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
## v1.2.0: 2018-03-07
2+
* **[2018-02-04]** Upgraded the stack:
3+
* PHP v7.2.3
4+
* Nginx v1.10.3 [unchanged]
5+
* Redis v3.2.11
6+
* PostgreSQL v9.6.7
7+
* MariaDB 10.3.4 [unchanged]
8+
9+
* **[2018-02-21]** Added support for multiple nginx vhosts.
10+
* **[2018-02-21]** Added support for SSL certificates and unlimited custom
11+
nginx configuration.
12+
* **[2018-02-21]** Added the bcmath PHP extension.
13+
* **[2018-02-21]** [internal] Created a Makefile for the creation of release files.
14+
* **[2018-02-21]** [internal] Consolidated the common docker files.
15+
16+
## v1.1.0: 2018-02-05
17+
18+
* **[2018-02-05]** The CLI now runs as the current user, NOT as root.
19+
* **[2018-02-05]** The CLI now uses the same Docker net as the main project,
20+
so it can communicate with other daemons (redis, psql, etc.).
21+
* **[2018-02-05]** Added a lot of documentation to the project.
22+
23+
## v1.0.0: 2018-02-04
24+
25+
* **[2018-02-04]** Upgraded the stack:
26+
* PHP v7.2.2
27+
* Nginx v1.10.3
28+
* Redis v3.2.6
29+
* PostgreSQL v9.6.6
30+
* MariaDB 10.3.4
31+

Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION=1.2.3
1+
VERSION=1.2.0
22

33
all: clean
44
@mkdir phppro-dockerized_php-v$(VERSION)
@@ -9,8 +9,8 @@ all: clean
99
@echo "Bundling the common Docker files..."
1010
@cp -rf dist/_common/* phppro-dockerized_php-v$(VERSION)/mariadb
1111
@cp -rf dist/_common/* phppro-dockerized_php-v$(VERSION)/postgres
12-
@echo "Bundling the README.md..."
13-
@cp README.md phppro-dockerized_php-v$(VERSION)/
12+
@echo "Bundling the README.md and CHANGELOG.md..."
13+
@cp README.md CHANGELOG.md phppro-dockerized_php-v$(VERSION)/
1414

1515
@echo "Making the archives..."
1616
@zip -qr phppro-dockerized_php-v$(VERSION).zip phppro-dockerized_php-v$(VERSION)
@@ -20,4 +20,4 @@ clean:
2020
@echo "Cleaning up..."
2121
@rm -rf phppro-dockerized_php-v$(VERSION)
2222
@rm -f phppro-dockerized_php-v$(VERSION).zip
23-
@rm -f phppro-dockerized_php-v$(VERSION).tar.gz
23+
@rm -f phppro-dockerized_php-v$(VERSION).tar.gz

0 commit comments

Comments
 (0)