Girish Ramakrishnan преди 8 години
родител
ревизия
15af6a48e1
променени са 4 файла, в които са добавени 6 реда и са изтрити 3 реда
  1. 3 0
      CHANGELOG
  2. 1 1
      CloudronManifest.json
  3. 1 1
      DESCRIPTION.md
  4. 1 1
      Dockerfile

+ 3 - 0
CHANGELOG

@@ -91,3 +91,6 @@
 [0.7.5]
 * Fix issue where plugin and theme updates were disabled
 
+[0.7.6]
+* Update Wordpress to 4.7.4
+

+ 1 - 1
CloudronManifest.json

@@ -4,7 +4,7 @@
   "author": "WordPress developers",
   "description": "file://DESCRIPTION.md",
   "tagline": "Transform your site into almost anything you can imagine",
-  "version": "0.7.5",
+  "version": "0.7.6",
   "healthCheckPath": "/wp-login.php",
   "httpPort": 8000,
   "manifestVersion": 1,

+ 1 - 1
DESCRIPTION.md

@@ -1,4 +1,4 @@
-This app packages WordPress 4.7.2.
+This app packages WordPress 4.7.4.
 
 WordPress is web software you can use to create a beautiful website or blog.
 We like to say that WordPress is both free and priceless at the same time.

+ 1 - 1
Dockerfile

@@ -8,7 +8,7 @@ RUN apt-get update && \
 
 RUN mkdir -p /app/code
 WORKDIR /app/code
-RUN curl -L http://wordpress.org/wordpress-4.7.3.tar.gz | tar -xz --strip-components 1 -f -
+RUN curl -L http://wordpress.org/wordpress-4.7.4.tar.gz | tar -xz --strip-components 1 -f -
 RUN mv /app/code/wp-content /app/code/wp-content-vanilla && ln -s /app/data/wp-content /app/code/wp-content
 RUN ln -s /app/data/htaccess /app/code/.htaccess
 ADD wp-config.php.template /app/code/wp-config.php.template