Skip to content

Commit

Permalink
Upped the version number in preparation for a release.
Browse files Browse the repository at this point in the history
  • Loading branch information
bijington committed Jul 27, 2016
1 parent 7be10fb commit 5f33319
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ expression.EvaluateAsync((r) =>
| Bitwise NOT | ~ | 2 ~ 2 |
| Left shift | << | 2 << 2 |
| Right shift | >> | 2 >> 2 |
| Null Coalesce | ?? | null ?? 0 |

### Functions

Expand Down Expand Up @@ -211,5 +212,4 @@ expression.EvaluateAsync((r) =>
| Integer | 123 |
| Boolean | true, false |
| Floating point | 123.456 |
| Scientific notation | 1.22e2 |
| null | null |
14 changes: 12 additions & 2 deletions Source/CSharp/Expressive/Expressive.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,24 @@
<package >
<metadata>
<id>ExpressiveParser</id>
<version>1.0.0</version>
<version>1.0.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>The first official release.</releaseNotes>
<releaseNotes> Version 1.0.1 includes
Bug fixes:
* Unary operators now correctly evaluate.
* If either side of an operation is missing an exception will be thrown to idenfity a break in the evaluation.
* Empty expressions are now treated as a break in the evaluation process.
* Empty parentheses are now treated as a break in the evaluation process.
Features:
* Added in a Null Coalescing operator (??).
General:
* Reworked the exceptions that are thrown so that they are all wrapped up inside a single ExpressiveException with a helpful message.
</releaseNotes>
<copyright>Copyright(c) 2016 Shaun Lawrence</copyright>
<tags>Expression Parser Evaluator</tags>
</metadata>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,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.0.0")]
[assembly: AssemblyFileVersion("1.0.0")]
[assembly: AssemblyVersion("1.0.1")]
[assembly: AssemblyFileVersion("1.0.1")]

0 comments on commit 5f33319

Please sign in to comment.