Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
burdoto committed Oct 9, 2022
1 parent b0bd28b commit 278e121
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions clmath/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ private static void StdIoMode()
case "": break;
case "exit": return;
case "help":
Console.WriteLine($"clmath v{typeof(Program).Assembly.GetName().Version} by comroid\n");
Console.WriteLine("Available commands:");
Console.WriteLine("\thelp\t\tShows this text");
Console.WriteLine("\texit\t\tCloses the program");
Expand Down Expand Up @@ -203,6 +204,7 @@ private static void EvalFunc(Component func, string? f = null)
_exiting = true;
return;
case "help":
Console.WriteLine($"clmath v{typeof(Program).Assembly.GetName().Version} by comroid\n");
Console.WriteLine("Available commands:");
Console.WriteLine("\thelp\t\tShows this text");
Console.WriteLine("\texit\t\tCloses the program");
Expand Down
4 changes: 2 additions & 2 deletions clmath/clmath.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageVersion>0.10.0</PackageVersion>
<PackageVersion>1.0.0</PackageVersion>
<Title>clmath</Title>
<Authors>comroid</Authors>
<Description>A commandline math tool</Description>
<PackageProjectUrl>https://github.com/comroid-git/clmath</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/comroid-git/clmath/blob/master/LICENSE</PackageLicenseUrl>
<RepositoryUrl>https://github.com/comroid-git/clmath</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<AssemblyVersion>0.10.0</AssemblyVersion>
<AssemblyVersion>1.0.0</AssemblyVersion>
<FileVersion>10</FileVersion>
<NeutralLanguage>en-150</NeutralLanguage>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
Expand Down

0 comments on commit 278e121

Please sign in to comment.