Skip to content

Commit

Permalink
Upped the version number ready for a release.
Browse files Browse the repository at this point in the history
  • Loading branch information
bijington committed Dec 6, 2017
1 parent 6be0a54 commit 3814780
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 12 deletions.
9 changes: 4 additions & 5 deletions Source/CSharp/Expressive/Expressive.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,17 @@
<metadata>
<id>ExpressiveParser</id>
<title>Expressive Parser</title>
<version>1.1.1</version>
<version>1.2.1</version>
<authors>Shaun Lawrence</authors>
<owners>Shaun Lawrence</owners>
<licenseUrl>https://opensource.org/licenses/mit</licenseUrl>
<projectUrl>https://github.com/bijington/expressive</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A multi-platform expression parsing and evaluating framework.</description>
<releaseNotes> Version 1.1.1 includes
<releaseNotes> Version 1.2.1 includes
Bug fixes:
* GH-16: The parser now always uses the '.' decimal separator rather than using the current locales.
* GH-10: String comparisons now adhere to the ExpressiveOptions.IgnoreCase option if passed in.
* GH-14: Comparisons between strings and booleans now no longer fail.
* GH-17: Added in some extra functions: Contains (String), EndsWith (String), StartsWith (String), Random (Mathematical)
* GH-19: Improved the function matching process by looking for longer names first.
</releaseNotes>
<copyright>Copyright(c) 2017 Shaun Lawrence</copyright>
<tags>Expression Parser Evaluator</tags>
Expand Down
13 changes: 6 additions & 7 deletions Source/CSharp/Expressive/Expressive/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using System;
using System.Reflection;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
Expand All @@ -8,6 +8,7 @@
[assembly: AssemblyTitle("Expressive")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Expressive")]
[assembly: AssemblyCopyright("Copyright © Shaun Lawrence 2017")]
[assembly: AssemblyTrademark("")]
Expand All @@ -18,10 +19,8 @@
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

[assembly: CLSCompliant(true)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("64525626-8340-4f9c-9a19-f26e40d1f496")]
[assembly: Guid("9571bbbb-3f9b-4f46-8a5c-efd5ec13e5b1")]

// Version information for an assembly consists of the following four values:
//
Expand All @@ -33,5 +32,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.0")]
[assembly: AssemblyFileVersion("1.2.0")]
[assembly: AssemblyVersion("1.2.1")]
[assembly: AssemblyFileVersion("1.2.1")]

0 comments on commit 3814780

Please sign in to comment.