Skip to content

Commit

Permalink
- Update version number for 1.6.1 patch and fix compiler warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
nairdo committed Dec 12, 2016
1 parent 99b6572 commit a4b2410
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Rock.Version/Properties/AssemblyInfo.cs
Expand Up @@ -48,8 +48,8 @@
// match the correct version exactly.

// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion( "1.6.0.0" )]
[assembly: AssemblyFileVersion( "1.6.0.0" )]
[assembly: AssemblyVersion( "1.6.1.0" )]
[assembly: AssemblyFileVersion( "1.6.1.0" )]

// This number can change for each build (and should change) so that we can correctly
// identify exactly which version someone is running. This number should increment
Expand All @@ -63,6 +63,6 @@
// This is the "official" product name that will be shown to people.
// It's shown in the SystemInfo details and perhaps the RockUpdate page.
// JICK - J(on) / (N)ick versioning system.
[assembly: AssemblyInformationalVersion( "Rock McKinley 6.0" )]
[assembly: AssemblyInformationalVersion( "Rock McKinley 6.1" )]
//[assembly: AssemblyInformationalVersion( "Rock McKinley 0.7 (beta)" )] // 1.0.10
//[assembly: AssemblyInformationalVersion( "Rock McKinley 1.0" )] // 1.3.4
4 changes: 2 additions & 2 deletions Rock/Properties/AssemblyInfo.cs
Expand Up @@ -48,7 +48,7 @@
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
//[assembly: AssemblyVersion( "0.0.0.*" )] // I've read some things that make me think we should not do this... comments?
[assembly: AssemblyVersion( "1.6.0.0" )]
[assembly: AssemblyFileVersion( "1.6.0.0" )]
[assembly: AssemblyVersion( "1.6.1.0" )]
[assembly: AssemblyFileVersion( "1.6.1.0" )]


Expand Up @@ -226,6 +226,7 @@ public void GetGroupTypeValues( GroupType groupType )
/// Sets the type of the group.
/// </summary>
/// <param name="groupType">Type of the group.</param>
/// <param name="rockContext">The rock context.</param>
public void SetGroupType( GroupType groupType, RockContext rockContext )
{
EnsureChildControls();
Expand Down Expand Up @@ -386,6 +387,7 @@ public override void RenderControl( HtmlTextWriter writer )
/// <summary>
/// Creates the group type attribute controls.
/// </summary>
/// <param name="groupType">Type of the group.</param>
/// <param name="rockContext">The rock context.</param>
public void CreateGroupTypeAttributeControls( GroupType groupType, RockContext rockContext )
{
Expand Down

0 comments on commit a4b2410

Please sign in to comment.