diff --git a/CHANGELOG.md b/CHANGELOG.md index bfbf53b..31df215 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ ChangeLog ========= +0.3.4 (2016-02-20) +------------------ + +* Last build was broken, contained data in the `Specific/` directory. This + affected new installs but not upgrades. + + 0.3.3 (2016-02-18) ----------------- diff --git a/Core/Distrib.php b/Core/Distrib.php index 2f27867..7656973 100644 --- a/Core/Distrib.php +++ b/Core/Distrib.php @@ -24,5 +24,5 @@ # This copyright notice MUST APPEAR in all copies of the script! ################################################################# -define("BAIKAL_VERSION", "0.3.3"); +define("BAIKAL_VERSION", "0.3.4"); define("BAIKAL_HOMEPAGE", "http://baikal-server.com"); diff --git a/Makefile b/Makefile index cf17ca9..ef1959a 100644 --- a/Makefile +++ b/Makefile @@ -2,14 +2,14 @@ BUILD_DIR="build/baikal" -BUILD_FILES=Core html Specific CHANGELOG.md LICENSE README.md composer.json +BUILD_FILES=Core html CHANGELOG.md LICENSE README.md composer.json VERSION=$(shell php -r "include 'Core/Distrib.php'; echo BAIKAL_VERSION;") dist: vendor/autoload.php # Building Baikal $(VERSION) rm -r $(BUILD_DIR); true - mkdir -p $(BUILD_DIR) + mkdir -p $(BUILD_DIR) $(BUILD_DIR)/Specific $(BUILD_DIR)/Specific/db cp -R $(BUILD_FILES) $(BUILD_DIR) touch $(BUILD_DIR)/Specific/ENABLE_INSTALL composer install -d $(BUILD_DIR)