Skip to content

Commit

Permalink
8.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
julsemaan committed Jul 9, 2018
1 parent 0e5c602 commit 73bdb24
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion NEWS.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions UPGRADE.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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).
2 changes: 1 addition & 1 deletion conf/pf-release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
PacketFence 8.0.9
PacketFence 8.1.0
4 changes: 2 additions & 2 deletions db/pf-schema-X.Y.Z.sql → db/pf-schema-8.1.0.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions db/upgrade-X.X.X-X.Y.Z.sql → db/upgrade-8.0.0-8.1.0.sql
Original file line number Diff line number Diff line change
@@ -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
--


Expand All @@ -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;
Expand Down

0 comments on commit 73bdb24

Please sign in to comment.