Skip to content

Commit

Permalink
Update version to 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fholger committed Jan 10, 2016
1 parent 8473ee4 commit 332d172
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -6,7 +6,7 @@ Exports Rocksmith 2014 arrangements to Guitar Pro tabs (.gp5, .gpx). It parses R
![gui][gui]

#### Current version
The current version is v1.0. Find it at http://www.rocksmithtotab.de .
The current version is v1.1. Find it at http://www.rocksmithtotab.de .

#### Basic use

Expand Down
2 changes: 1 addition & 1 deletion RocksmithToTab/Properties/AssemblyInfo.cs
Expand Up @@ -33,5 +33,5 @@
// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern
// übernehmen, indem Sie "*" eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.1.*")]
[assembly: AssemblyFileVersion(RocksmithToTabLib.VersionInfo.ASSEMBLY_VERSION)]
2 changes: 1 addition & 1 deletion RocksmithToTabGUI/Properties/AssemblyInfo.cs
Expand Up @@ -32,5 +32,5 @@
// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern
// übernehmen, indem Sie "*" eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.1.*")]
[assembly: AssemblyFileVersion(RocksmithToTabLib.VersionInfo.ASSEMBLY_VERSION)]
2 changes: 1 addition & 1 deletion RocksmithToTabLib/Properties/AssemblyInfo.cs
Expand Up @@ -32,5 +32,5 @@
// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern
// übernehmen, indem Sie "*" eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.1.*")]
[assembly: AssemblyFileVersion(RocksmithToTabLib.VersionInfo.ASSEMBLY_VERSION)]
6 changes: 3 additions & 3 deletions RocksmithToTabLib/VersionInfo.cs
Expand Up @@ -9,11 +9,11 @@ namespace RocksmithToTabLib
public class VersionInfo
{
public const int MAJOR = 1;
public const int MINOR = 0;
public const int MINOR = 1;
public const int BUILD = 0;
public const int PATCH = 0;

public const string ASSEMBLY_VERSION = "1.0.0.0";
public const string VERSION = "1.0";
public const string ASSEMBLY_VERSION = "1.1.0.0";
public const string VERSION = "1.1";
}
}

0 comments on commit 332d172

Please sign in to comment.