Skip to content

Commit

Permalink
Updated the version number
Browse files Browse the repository at this point in the history
  • Loading branch information
arjendeetman committed May 4, 2024
1 parent 78df447 commit 58ace44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RobotComponents/VersionNumbering.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public static class VersionNumbering
/// x.0.x ---> MINOR version when you add functionality in a backwards compatible manner,
/// x.x.0 ---> BUILD version when you make backwards compatible bug fixes
/// </remarks>
public const string CurrentVersion = "3.0.0";
public const string CurrentVersion = "3.0.1";

/// <summary>
/// Gets the current version.
Expand All @@ -33,6 +33,6 @@ public static class VersionNumbering
/// x.0.x ---> MINOR version when you add functionality in a backwards compatible manner,
/// x.x.0 ---> BUILD version when you make backwards compatible bug fixes
/// </remarks>
public static Version Version = new Version(3, 0, 0);
public static Version Version = new Version(3, 0, 1);
}
}

0 comments on commit 58ace44

Please sign in to comment.