diff --git a/Dockerfile b/Dockerfile index 933c5f9d..b9e28c72 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ #tag 8.0-alpine FROM mcr.microsoft.com/dotnet/aspnet@sha256:646b1c5ff36375f35f6149b0ce19ca095f97b4b882b90652801e9fbe82bcfa8a LABEL maintainer="Ed-Fi Alliance, LLC and Contributors " -ENV VERSION="2.2.0" +ENV VERSION="2.3.0" ENV TZ=${TIME_ZONE} # Alpine image does not contain Globalization Cultures library so we need to install ICU library to get fopr LINQ expression to work diff --git a/Installer/install.ps1 b/Installer/install.ps1 index 1cae02e2..435a81bc 100644 --- a/Installer/install.ps1 +++ b/Installer/install.ps1 @@ -45,14 +45,14 @@ Configure DataImport $p = @{ ToolsPath = "C:/temp/tools" DbConnectionInfo = $dbConnectionInfo - PackageVersion = '2.2.0.0' + PackageVersion = '2.3.0.0' } UserRecoveryToken is optional. This value can be used to recover/ reset the application user credentials $p = @{ ToolsPath = "C:/temp/tools" DbConnectionInfo = $dbConnectionInfo - PackageVersion = '2.2.0.0' + PackageVersion = '2.3.0.0' UserRecoveryToken = "bEnFYNociET2R1Wua3DHzwfU5u" } #> @@ -62,7 +62,7 @@ $packageSource = Split-Path $PSScriptRoot -Parent $p = @{ ToolsPath = "C:/temp/tools" DbConnectionInfo = $dbConnectionInfo - PackageVersion = '2.2.0.0' + PackageVersion = '2.3.0.0' PackageSource = $packageSource }