Skip to content

Commit

Permalink
0.80.4 - coni2k
Browse files Browse the repository at this point in the history
Closes #136
  • Loading branch information
coni2k committed Sep 13, 2017
1 parent 03373cf commit 92d1f97
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion AngularClient/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "forcrowd-wealtheconomy-angularclient",
"description": "Experimental ideas on improving how the economy works",
"author": "Stichting forCrowd",
"version": "0.80.3",
"version": "0.80.4",
"license": "MIT",
"scripts": {
"ng": "ng",
Expand Down
2 changes: 1 addition & 1 deletion AngularClient/src/app-settings/app-settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ export class AppSettings {
/**
* Application version number
*/
static get version(): string { return "0.80.3"; }
static get version(): string { return "0.80.4"; }
}
3 changes: 2 additions & 1 deletion BusinessObjects/UserCommandTreeInterceptor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ public void TreeCreated(DbCommandTreeInterceptionContext interceptionContext)
/// </summary>
static bool InterceptQueryCommand(DbCommandTreeInterceptionContext interceptionContext)
{
if (interceptionContext.Result is DbQueryCommandTree queryCommand)
var queryCommand = interceptionContext.Result as DbQueryCommandTree;
if (queryCommand != null)
{
var newQuery = queryCommand.Query.Accept(new UserQueryVisitor());
interceptionContext.Result = new DbQueryCommandTree(
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

**0.80.3**

* BusinessObjects - Appveyor build fix
* BusinessObjects - Appveyor build fix #2 - coni2k

**0.80.3**

* BusinessObjects - Appveyor build fix - coni2k

**0.80.2**

Expand Down
2 changes: 1 addition & 1 deletion SolutionItems/Properties/SolutionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
[assembly: ComVisible(false)]

// Aiming to stick to Semver versioning: http://semver.org/spec/v2.0.0.html
[assembly: AssemblyInformationalVersion("0.80.3")]
[assembly: AssemblyInformationalVersion("0.80.4")]

0 comments on commit 92d1f97

Please sign in to comment.