diff --git a/README.md b/README.md index 1fe0171..7794ad6 100644 --- a/README.md +++ b/README.md @@ -49,11 +49,16 @@ A Nuget package is available at [www.nuget.org/packages/HaloSharp](https://www.n ### Changelog ### -###### v.1.2.2.0 (2016-02-20) +###### v.1.2.2.0 (2016-02-25) 1. Updated Medal enum. * New Medal Type: Ball +###### v.1.2.2.0 (2016-02-20) + +1. Updated Medal enum. + * New Medal Type: Goal + 4. Updated Requisition model. * New property: HideIfNotAcquired diff --git a/Source/HaloSharp.Test/Properties/AssemblyInfo.cs b/Source/HaloSharp.Test/Properties/AssemblyInfo.cs index b636fc6..12a1358 100644 --- a/Source/HaloSharp.Test/Properties/AssemblyInfo.cs +++ b/Source/HaloSharp.Test/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.2.2.0")] -[assembly: AssemblyFileVersion("1.2.2.0")] \ No newline at end of file +[assembly: AssemblyVersion("1.2.3.0")] +[assembly: AssemblyFileVersion("1.2.3.0")] \ No newline at end of file diff --git a/Source/HaloSharp/Model/Enumeration.cs b/Source/HaloSharp/Model/Enumeration.cs index 056e7d1..40e2260 100644 --- a/Source/HaloSharp/Model/Enumeration.cs +++ b/Source/HaloSharp/Model/Enumeration.cs @@ -85,7 +85,8 @@ public enum MedalType Vehicles, Warzone, WeaponProficiency, - Goal + Goal, + Ball } public enum OwnerType diff --git a/Source/HaloSharp/Properties/AssemblyInfo.cs b/Source/HaloSharp/Properties/AssemblyInfo.cs index 9fe4a87..7046e22 100644 --- a/Source/HaloSharp/Properties/AssemblyInfo.cs +++ b/Source/HaloSharp/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.2.2.0")] -[assembly: AssemblyFileVersion("1.2.2.0")] +[assembly: AssemblyVersion("1.2.3.0")] +[assembly: AssemblyFileVersion("1.2.3.0")]