Skip to content

Commit 73f8738

Browse files
committed
bump news,upgrade,schema to 10.2.0
1 parent a1c853f commit 73f8738

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

NEWS.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ 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
15-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
14+
Version 10.2.0 released on 2020-10-07
15+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1616

1717
New Features
1818
++++++++++++

UPGRADE.asciidoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1313,7 +1313,7 @@ To upgrade the database schema, run the following command:
13131313
mysql -u root -p pf -v < /usr/local/pf/db/upgrade-10.0.0-10.1.0.sql
13141314
----
13151315
1316-
== Upgrading from a version prior to X.Y.Z
1316+
== Upgrading from a version prior to 10.2.0
13171317
13181318
=== Self registration portal
13191319
@@ -1336,13 +1336,13 @@ If switch type was not defined, this script will set it to `Generic`:
13361336
=== Database schema
13371337
13381338
Changes have been made to the database schema. You will need to update it accordingly.
1339-
An SQL upgrade script has been provided to upgrade the database from the X.X.X schema to X.Y.Z.
1339+
An SQL upgrade script has been provided to upgrade the database from the 10.1.0 schema to 10.2.0.
13401340
13411341
To upgrade the database schema, run the following command:
13421342
13431343
[source,bash]
13441344
----
1345-
mysql -u root -p pf -v < /usr/local/pf/db/upgrade-X.X.X-X.Y.Z.sql
1345+
mysql -u root -p pf -v < /usr/local/pf/db/upgrade-10.1.0-10.2.0.sql
13461346
----
13471347
13481348
== Archived upgrade notes

conf/pf-release

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

db/pf-schema-X.Y.Z.sql renamed to db/pf-schema-10.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 = 10;
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-10.1.0-10.2.0.sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--
2-
-- PacketFence SQL schema upgrade from X.X.X to X.Y.Z
2+
-- PacketFence SQL schema upgrade from 10.1.0 to 10.2.0
33
--
44

55

@@ -8,8 +8,8 @@
88
--
99

1010
SET @MAJOR_VERSION = 10;
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)