Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

change version files over to 5.3.1 #1247

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion earth_enterprise/BUILD.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ __NOTE:__ If you want to build, install, or run Portable server, see the
Building is currently supported for 64-bit versions of Ubuntu 14.04 LTS,
Ubuntu 16.04 LTS, RHEL 6, RHEL 7, CentOS 6, and CentOS 7.

## GEE 5.3.0 Build Prerequisites (all platforms)
## GEE 5.3.1 Build Prerequisites (all platforms)

1. Setup required Tools and Dependencies:

Expand Down
14 changes: 7 additions & 7 deletions earth_enterprise/Upgrade.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Upgrading Earth Enterprise Fusion and Server to version 5.3.0
# Upgrading Earth Enterprise Fusion and Server to version 5.3.1

Upgrading to GEE 5.3.0 is supported from Earth Enterprise 5.2.x and above versions.
Upgrading to GEE 5.3.1 is supported from Earth Enterprise 5.2.x and above versions.

Do NOT uninstall GEE 5.2.x. We recommend that you upgrade GEE 5.2.x by simply
installing GEE 5.3.0. Installing GEE 5.3.0 on top of GEE 5.2.x will ensure that
installing GEE 5.3.1. Installing GEE 5.3.1 on top of GEE 5.2.x will ensure that
your PostgreSQL databases are backed up and upgraded correctly to the new
PostgreSQL version used by GEE 5.3.0
PostgreSQL version used by GEE 5.3.1

Upgrade is supported using either scripts or RPMs:

Expand All @@ -25,7 +25,7 @@ Upgrade is supported using either scripts or RPMs:
## Upgrading with RPM packages (Red Hat and CentOS only)

Alternatively, instead of using scripts, on Red Hat and CentOS, you can upgrade
GEE 5.2.x to GEE 5.3.0 using [RPM packages](https://github.com/google/earthenterprise/blob/master/earth_enterprise/BUILD_RPMS.md).
GEE 5.2.x to GEE 5.3.1 using [RPM packages](https://github.com/google/earthenterprise/blob/master/earth_enterprise/BUILD_RPMS.md).

Upgrading from any previous version installed via RPM:

Expand All @@ -52,9 +52,9 @@ Upgrading from any previous version installed via RPM:

Uninstall is NOT recommended before upgrading.

If you decide that you want to uninstall GEE 5.2.0 before installing GEE 5.3.0,
If you decide that you want to uninstall GEE 5.2.0 before installing GEE 5.3.1,
first make sure to backup your PostgreSQL databases. Please keep in mind that
the database backup, made by 5.2.0, would not be compatible with GEE 5.3.0
the database backup, made by 5.2.0, would not be compatible with GEE 5.3.1
PostgreSQL databases.

* Create a backup folder: `mkdir -p /tmp/MyBackupFolder`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import platform
import socket

LATEST_VERSION = '5.3.0'
LATEST_VERSION = '5.3.1'

SUPPORTED_OS_LIST = {
'redhat': {'min_release': '6.0',
Expand Down
2 changes: 1 addition & 1 deletion earth_enterprise/src/fusion_version.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
# earth_enterprise/installer/
# Format is 1 line (comment lines ignored):
# full version number: e.g., 3.1.2.3, 5.2.4, etc
5.3.0
5.3.1
3 changes: 2 additions & 1 deletion earth_enterprise/src/support/geecheck/geecheck.pl
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ BEGIN
EOF

# Parse the command line arguments.
my $version = "5.3.0";
my $version = "5.3.1";
my $server = 0;
my $show_logs = 0;
my $show_cpu = 0;
Expand Down Expand Up @@ -130,6 +130,7 @@ BEGIN
"5.2.4" => ["1", 0],
"5.2.5" => ["1", 0],
"5.3.0" => ["1", 0],
"5.3.1" => ["1", 0],
);
my @known_versions = keys(%version_table);

Expand Down