Bump Steeltoe 3.0.0-rc1 to 3.0.0 [#123]

This commit is contained in:
Chris Cheetham 2020-08-21 16:54:22 -04:00
Родитель 9ce564fbe8
Коммит 41042065ff
3 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -3,7 +3,7 @@ namespace Steeltoe.Initializr.TemplateEngine
public static class Constants
{
public const string Steeltoe24 = "2.4.4";
public const string Steeltoe30 = "3.0.0-rc1";
public const string Steeltoe30 = "3.0.0";
public const string NetCoreApp21 = "netcoreapp2.1";
public const string NetCoreApp31 = "netcoreapp3.1";
public const string WebApi = "webapi";

Просмотреть файл

@ -99,7 +99,7 @@ export class Home extends Component {
<InputSelector id="steeltoeVersion"
title="Steeltoe Version"
name="steeltoeVersion"
values={["2.4.4", "3.0.0-rc1"]}
values={["2.4.4", "3.0.0"]}
defaultValue="2.4.4"
selectedValue={this.state.steeltoeVersion}
onChange={this.handleInputChange}

Просмотреть файл

@ -13,7 +13,7 @@ namespace Steeltoe.Initializr.TemplateEngine.Test
[Fact]
public void Steeltoe30()
{
Assert.Equal("3.0.0-rc1", Constants.Steeltoe30);
Assert.Equal("3.0.0", Constants.Steeltoe30);
}
[Fact]