Skip to content

Commit 64f7eee

Browse files
committed
pre-release 9.2.0
1 parent dcbeef6 commit 64f7eee

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

NEWS.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This is a list of noteworthy changes across releases.
1111
For more details and developer visible changes see the ChangeLog file.
1212
For a list of compatibility related changes see the UPGRADE.asciidoc file.
1313

14-
Version X.Y.Z released on xxxx-xx-xx
14+
Version 9.2.0 released on 2019-11-26
1515
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1616

1717
New Features

UPGRADE.asciidoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -955,7 +955,7 @@ To upgrade the database schema, run the following command:
955955
956956
Once completed, update the file /usr/local/pf/conf/currently-at to match the new release number (PacketFence 9.1.0).
957957
958-
== Upgrading from a version prior to X.Y.Z
958+
== Upgrading from a version prior to 9.2.0
959959
960960
961961
=== Merge of all RPM packages into one (RHEL / CentOS only)
@@ -1013,16 +1013,16 @@ sudo apt-key del FE9E84327B18FF82B0378B6719CDA6A9810273C4
10131013
=== Database schema
10141014
10151015
Changes have been made to the database schema. You will need to update it accordingly.
1016-
An SQL upgrade script has been provided to upgrade the database from the X.X schema to X.Y.
1016+
An SQL upgrade script has been provided to upgrade the database from the 9.1 schema to 9.2.
10171017
10181018
To upgrade the database schema, run the following command:
10191019
10201020
[source,bash]
10211021
----
1022-
mysql -u root -p pf -v < /usr/local/pf/db/upgrade-X.X.X-X.Y.Z.sql
1022+
mysql -u root -p pf -v < /usr/local/pf/db/upgrade-9.1.0-9.2.0.sql
10231023
----
10241024
1025-
Once completed, update the file [filename]`/usr/local/pf/conf/currently-at` to match the new release number (PacketFence X.Y.Z):
1025+
Once completed, update the file [filename]`/usr/local/pf/conf/currently-at` to match the new release number (PacketFence 9.2.0):
10261026
10271027
[source,bash]
10281028
----

conf/pf-release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
PacketFence 9.1.9
1+
PacketFence 9.2.0

db/pf-schema-X.Y.Z.sql renamed to db/pf-schema-9.2.0.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
--
44

55
SET @MAJOR_VERSION = 9;
6-
SET @MINOR_VERSION = 1;
7-
SET @SUBMINOR_VERSION = 9;
6+
SET @MINOR_VERSION = 2;
7+
SET @SUBMINOR_VERSION = 0;
88

99
--
1010
-- The VERSION_INT to ensure proper ordering of the version in queries

db/upgrade-X.X.X-X.Y.Z.sql renamed to db/upgrade-9.1.0-9.2.0.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
--
99

1010
SET @MAJOR_VERSION = 9;
11-
SET @MINOR_VERSION = 1;
12-
SET @SUBMINOR_VERSION = 9;
11+
SET @MINOR_VERSION = 2;
12+
SET @SUBMINOR_VERSION = 0;
1313

1414

1515

0 commit comments

Comments
 (0)