Skip to content

Commit 69ad496

Browse files
committed
Fixing the version string
1 parent 70a58c5 commit 69ad496

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 2.0.2.{build}
1+
version: 2.0.3.{build}
22
image: Visual Studio 2017
33

44
clone_folder: c:\azure-functions-cli

src/Azure.Functions.Cli/Azure.Functions.Cli.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>netcoreapp2.1</TargetFramework>
55
<AssemblyName>func</AssemblyName>
66
<RuntimeIdentifiers>win-x64;win-x86;linux-x64;osx-x64</RuntimeIdentifiers>
7-
<Version>2.0.2</Version>
7+
<Version>2.0.3</Version>
88
<Company>Microsoft</Company>
99
<Authors>Microsoft</Authors>
1010
<Title>Azure Functions Cli</Title>

src/Azure.Functions.Cli/Common/Constants.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ internal static class Constants
3030
public static string CliVersion => typeof(Constants).GetTypeInfo().Assembly.GetName().Version.ToString(3);
3131
public static string CliBetaRevision => typeof(Constants).GetTypeInfo().Assembly.GetName().Version.MinorRevision.ToString();
3232

33-
public static string CliDisplayVersion => $"{Constants.CliVersion}.{Constants.CliBetaRevision}";
33+
public static string CliDisplayVersion => CliVersion + ((CliBetaRevision == "0") ? string.Empty : $"-beta.{CliBetaRevision}");
3434

3535

3636
public static class Errors

src/Azure.Functions.Cli/npm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "azure-functions-core-tools",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"description": "Azure Functions Core Tools",
55
"scripts": {
66
"postinstall": "node lib/install.js"

0 commit comments

Comments
 (0)