Skip to content

Commit

Permalink
Release 0.0.2.2 RC (Lisias) for KSP >= 1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Lisias committed Dec 28, 2020
1 parent 59f31ba commit 5050fe8
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# TweakScale Companion :: Firespitter :: Changes

* 2020-1228: 0.0.2.2 RC (LisiasT) for KSP >= 1.4
+ Copes with KSPe new installment checks.
+ Promoted to Release Candidate! #HURRAY
* 2020-0917: 0.0.2.1 Beta (LisiasT) for KSP >= 1.4
+ Copes with TweakScale's new feature implemented on its Issue [#142 Add ignoreResourcesForCost to the TweakScale module attributes](https://github.com/net-lisias-ksp/TweakScale/issues/142)
* 2020-0829: 0.0.2.0 Beta (LisiasT) for KSP >= 1.4
Expand Down
3 changes: 3 additions & 0 deletions CHANGE_LOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# TweakScale Companion :: Firespitter :: Change Log

* 2020-1228: 0.0.2.2 RC (LisiasT) for KSP >= 1.4
+ Copes with KSPe new installment checks.
+ Promoted to Release Candidate! #HURRAY
* 2020-0917: 0.0.2.1 Beta (LisiasT) for KSP >= 1.4
+ Copes with TweakScale's new feature implemented on its Issue [#142 Add ignoreResourcesForCost to the TweakScale module attributes](https://github.com/net-lisias-ksp/TweakScale/issues/142)
* 2020-0829: 0.0.2.0 Beta (LisiasT) for KSP >= 1.4
Expand Down
4 changes: 2 additions & 2 deletions CONFIG.inc
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ DLLS="TweakScaleCompanion_FS TweakScalerFSBuoyancy"
PROJECT_BRANCH=`git branch | grep \* | cut -d ' ' -f2`
if [ "$PROJECT_BRANCH" == "master" ] ; then
# Release mode
PROJECT_STATE="-BETA"
PROJECT_STATE="-RC"
else
# Note: Add a leading dash when this value is present!
PROJECT_STATE="-BETA"
PROJECT_STATE="-RC"
fi

VERSION=$( cat $PACKAGE.version | tr '\n' ' ' | sed -n -E 's/^.*?"VERSION\":\{.*"MAJOR":([0-9]+?),.*?"MINOR":([0-9]+?),.*?"PATCH":([0-9]+?),.*?"BUILD":([0-9]+?).*?\}.*$/\1.\2.\3.\4/p' )
4 changes: 2 additions & 2 deletions Source/TweakScaleCompanion_FS/Properties/Version.tt
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ namespace <#= PROJECT_NAME #>
public const int build = <#= build #>;
public const string Number = "<#= major #>.<#= minor #>.<#= patch #>.<#= build #>";
#if DEBUG
public const string Text = Number + " /L Beta DEBUG";
public const string Text = Number + " /L RC DEBUG";
#else
public const string Text = Number + " /L Beta";
public const string Text = Number + " /L RC";
#endif
public const string Vendor = "TweakScaleCompanion";
}
Expand Down
2 changes: 1 addition & 1 deletion TweakScaleCompanion.FS.version
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"MAJOR":0,
"MINOR":0,
"PATCH":2,
"BUILD":1
"BUILD":2
},
"KSP_VERSION_MIN":{
"MAJOR":1,
Expand Down

0 comments on commit 5050fe8

Please sign in to comment.