Skip to content

Commit 278e121

Browse files
committed
bump version
1 parent b0bd28b commit 278e121

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

clmath/Program.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ private static void StdIoMode()
6464
case "": break;
6565
case "exit": return;
6666
case "help":
67+
Console.WriteLine($"clmath v{typeof(Program).Assembly.GetName().Version} by comroid\n");
6768
Console.WriteLine("Available commands:");
6869
Console.WriteLine("\thelp\t\tShows this text");
6970
Console.WriteLine("\texit\t\tCloses the program");
@@ -203,6 +204,7 @@ private static void EvalFunc(Component func, string? f = null)
203204
_exiting = true;
204205
return;
205206
case "help":
207+
Console.WriteLine($"clmath v{typeof(Program).Assembly.GetName().Version} by comroid\n");
206208
Console.WriteLine("Available commands:");
207209
Console.WriteLine("\thelp\t\tShows this text");
208210
Console.WriteLine("\texit\t\tCloses the program");

clmath/clmath.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
<TargetFramework>net6.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
8-
<PackageVersion>0.10.0</PackageVersion>
8+
<PackageVersion>1.0.0</PackageVersion>
99
<Title>clmath</Title>
1010
<Authors>comroid</Authors>
1111
<Description>A commandline math tool</Description>
1212
<PackageProjectUrl>https://github.com/comroid-git/clmath</PackageProjectUrl>
1313
<PackageLicenseUrl>https://github.com/comroid-git/clmath/blob/master/LICENSE</PackageLicenseUrl>
1414
<RepositoryUrl>https://github.com/comroid-git/clmath</RepositoryUrl>
1515
<RepositoryType>git</RepositoryType>
16-
<AssemblyVersion>0.10.0</AssemblyVersion>
16+
<AssemblyVersion>1.0.0</AssemblyVersion>
1717
<FileVersion>10</FileVersion>
1818
<NeutralLanguage>en-150</NeutralLanguage>
1919
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>

0 commit comments

Comments
 (0)