Skip to content

Commit

Permalink
Version 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
RayCarrot committed Feb 16, 2023
1 parent c176b1f commit 14c07b4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/GBAC.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<!-- Info (some of these get ignored right now due to GenerateAssemblyInfo being false) -->
<RootNamespace>GBAC</RootNamespace>
<AssemblyName>GBAC</AssemblyName>
<Version>1.1.0.0</Version>
<Version>1.2.0.0</Version>
<Authors>RayCarrot</Authors>
<Product>GBAC</Product>
</PropertyGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.1.0.0")]
[assembly: AssemblyFileVersion("1.1.0.0")]
[assembly: AssemblyVersion("1.2.0.0")]
[assembly: AssemblyFileVersion("1.2.0.0")]
2 changes: 1 addition & 1 deletion src/ViewModels/MainWindowViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ public void FindBytes()
[MemberNotNull(nameof(Title))]
public void SetTitle(string? subTitle = null)
{
Title = "GBAC 1.1.0.0";
Title = "GBAC 1.2.0.0";

if (subTitle != null)
Title += $" - {subTitle}";
Expand Down

0 comments on commit 14c07b4

Please sign in to comment.