Skip to content

Commit

Permalink
Changed version to 2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
allista committed Dec 19, 2016
1 parent cb80411 commit 681fb47
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,20 @@
"VERSION":
{
"MAJOR":2,
"MINOR":3,
"PATCH":1,
"MINOR":4,
"PATCH":0,
"BUILD":0
},
"KSP_VERSION_MIN":
{
"MAJOR":1,
"MINOR":2,
"PATCH":1
"PATCH":2
},
"KSP_VERSION_MAX":
{
"MAJOR":1,
"MINOR":2,
"PATCH":1
"PATCH":2
}
}
6 changes: 3 additions & 3 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
// and "{Major}.{Minor}.{Build}.*" will update just the revision.

[assembly: AssemblyVersion("2.3.1")]
[assembly: AssemblyVersion("2.4.0")]
[assembly: KSPAssembly("ConfigurableContainers", 2, 3)]

// The following attributes are used to specify the signing key for the assembly,
Expand All @@ -39,8 +39,8 @@ public class CCModInfo : KSP_AVC_Info
{
public CCModInfo()
{
MinKSPVersion = new Version(1,2,1);
MaxKSPVersion = new Version(1,2,1);
MinKSPVersion = new Version(1,2,2);
MaxKSPVersion = new Version(1,2,2);

VersionURL = "https://github.com/allista/ConfigurableContainers/tree/master/GameData/ConfigurableContainers/ConfigurableContainers.version";
UpgradeURL = "https://github.com/allista/ConfigurableContainers/releases";
Expand Down

0 comments on commit 681fb47

Please sign in to comment.