Skip to content

Commit

Permalink
pre-release 9.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
julsemaan committed Nov 26, 2019
1 parent dcbeef6 commit 64f7eee
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion NEWS.asciidoc
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 9.2.0 released on 2019-11-26
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

New Features
Expand Down
8 changes: 4 additions & 4 deletions UPGRADE.asciidoc
Expand Up @@ -955,7 +955,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 9.1.0).
== Upgrading from a version prior to X.Y.Z
== Upgrading from a version prior to 9.2.0
=== Merge of all RPM packages into one (RHEL / CentOS only)
Expand Down Expand Up @@ -1013,16 +1013,16 @@ sudo apt-key del FE9E84327B18FF82B0378B6719CDA6A9810273C4
=== Database schema
Changes have been made to the database schema. You will need to update it accordingly.
An SQL upgrade script has been provided to upgrade the database from the X.X schema to X.Y.
An SQL upgrade script has been provided to upgrade the database from the 9.1 schema to 9.2.
To upgrade the database schema, run the following command:
[source,bash]
----
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-9.1.0-9.2.0.sql
----
Once completed, update the file [filename]`/usr/local/pf/conf/currently-at` to match the new release number (PacketFence X.Y.Z):
Once completed, update the file [filename]`/usr/local/pf/conf/currently-at` to match the new release number (PacketFence 9.2.0):
[source,bash]
----
Expand Down
2 changes: 1 addition & 1 deletion conf/pf-release
@@ -1 +1 @@
PacketFence 9.1.9
PacketFence 9.2.0
4 changes: 2 additions & 2 deletions db/pf-schema-X.Y.Z.sql → db/pf-schema-9.2.0.sql
Expand Up @@ -3,8 +3,8 @@
--

SET @MAJOR_VERSION = 9;
SET @MINOR_VERSION = 1;
SET @SUBMINOR_VERSION = 9;
SET @MINOR_VERSION = 2;
SET @SUBMINOR_VERSION = 0;

--
-- The VERSION_INT to ensure proper ordering of the version in queries
Expand Down
4 changes: 2 additions & 2 deletions db/upgrade-X.X.X-X.Y.Z.sql → db/upgrade-9.1.0-9.2.0.sql
Expand Up @@ -8,8 +8,8 @@
--

SET @MAJOR_VERSION = 9;
SET @MINOR_VERSION = 1;
SET @SUBMINOR_VERSION = 9;
SET @MINOR_VERSION = 2;
SET @SUBMINOR_VERSION = 0;



Expand Down

0 comments on commit 64f7eee

Please sign in to comment.