From 73bdb24ca02a09b00bf55828611ccafc452d5c10 Mon Sep 17 00:00:00 2001 From: Julien Semaan Date: Mon, 9 Jul 2018 11:05:05 -0400 Subject: [PATCH] 8.1.0 release --- NEWS.asciidoc | 2 +- UPGRADE.asciidoc | 6 +++--- conf/pf-release | 2 +- db/{pf-schema-X.Y.Z.sql => pf-schema-8.1.0.sql} | 4 ++-- db/{upgrade-X.X.X-X.Y.Z.sql => upgrade-8.0.0-8.1.0.sql} | 6 +++--- 5 files changed, 10 insertions(+), 10 deletions(-) rename db/{pf-schema-X.Y.Z.sql => pf-schema-8.1.0.sql} (99%) rename db/{upgrade-X.X.X-X.Y.Z.sql => upgrade-8.0.0-8.1.0.sql} (96%) diff --git a/NEWS.asciidoc b/NEWS.asciidoc index ba94de01967e..c2492d809aec 100644 --- a/NEWS.asciidoc +++ b/NEWS.asciidoc @@ -11,7 +11,7 @@ This is a list of noteworthy changes across releases. For more details and developer visible changes see the ChangeLog file. For a list of compatibility related changes see the UPGRADE.asciidoc file. -Version X.Y.Z released on xxxx-xx-xx +Version 8.1.0 released on 2018-07-09 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ New Features diff --git a/UPGRADE.asciidoc b/UPGRADE.asciidoc index 5bbccbf37392..29c4d7615707 100644 --- a/UPGRADE.asciidoc +++ b/UPGRADE.asciidoc @@ -1716,7 +1716,7 @@ To upgrade the database schema, run the following command: Once completed, update the file /usr/local/pf/conf/currently-at to match the new release number (PacketFence 8.0.0). -Upgrading from a version prior to X.Y.Z +Upgrading from a version prior to 8.1.0 --------------------------------------- Changes on unreg_on_accounting_stop parameter @@ -1734,6 +1734,6 @@ An SQL upgrade script has been provided to upgrade the database from the 7.4 sch To upgrade the database schema, run the following command: - mysql -u root -p pf -v < /usr/local/pf/db/upgrade-X.X.X-X.Y.Z.sql + mysql -u root -p pf -v < /usr/local/pf/db/upgrade-8.0.0-8.1.0.sql -Once completed, update the file /usr/local/pf/conf/currently-at to match the new release number (PacketFence X.Y.Z). +Once completed, update the file /usr/local/pf/conf/currently-at to match the new release number (PacketFence 8.1.0). diff --git a/conf/pf-release b/conf/pf-release index 57696230a6cf..82e4c225c3aa 100644 --- a/conf/pf-release +++ b/conf/pf-release @@ -1 +1 @@ -PacketFence 8.0.9 +PacketFence 8.1.0 diff --git a/db/pf-schema-X.Y.Z.sql b/db/pf-schema-8.1.0.sql similarity index 99% rename from db/pf-schema-X.Y.Z.sql rename to db/pf-schema-8.1.0.sql index 4850e6ccce40..794b09326cbd 100644 --- a/db/pf-schema-X.Y.Z.sql +++ b/db/pf-schema-8.1.0.sql @@ -3,8 +3,8 @@ -- SET @MAJOR_VERSION = 8; -SET @MINOR_VERSION = 0; -SET @SUBMINOR_VERSION = 9; +SET @MINOR_VERSION = 1; +SET @SUBMINOR_VERSION = 0; -- -- The VERSION_INT to ensure proper ordering of the version in queries diff --git a/db/upgrade-X.X.X-X.Y.Z.sql b/db/upgrade-8.0.0-8.1.0.sql similarity index 96% rename from db/upgrade-X.X.X-X.Y.Z.sql rename to db/upgrade-8.0.0-8.1.0.sql index c90ea0f7c750..4fefb8d4d16b 100644 --- a/db/upgrade-X.X.X-X.Y.Z.sql +++ b/db/upgrade-8.0.0-8.1.0.sql @@ -1,5 +1,5 @@ -- --- PacketFence SQL schema upgrade from X.X.X to X.Y.Z +-- PacketFence SQL schema upgrade from 8.0.0 to 8.1.0 -- @@ -8,8 +8,8 @@ -- SET @MAJOR_VERSION = 8; -SET @MINOR_VERSION = 0; -SET @SUBMINOR_VERSION = 9; +SET @MINOR_VERSION = 1; +SET @SUBMINOR_VERSION = 0; SET @PREV_MAJOR_VERSION = 8; SET @PREV_MINOR_VERSION = 0;