Bumped version to 1.0.1.

This commit is contained in:
ruri
2019-04-07 14:40:29 +02:00
parent 0b440e705a
commit 9a9eb22e47
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ namespace OpenBullet
public static class Globals
{
// Version
public static string obVersion = "1.0.0";
public static string obVersion = "1.0.1";
// Main Window
public static MainWindow mainWindow;
+1 -1
View File
@@ -33,7 +33,7 @@ namespace RuriLib
/// <summary>The name of the Author of the Config.</summary>
public string Author { get { return author; } set { author = value; OnPropertyChanged(); } }
private string version = "1.0.0";
private string version = "1.0.1";
/// <summary>The version of RuriLib the Config was made with.</summary>
public string Version { get { return version; } set { version = value; OnPropertyChanged(); } }
#endregion