Skip to content

Commit

Permalink
Bump 2.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ecarriou committed May 9, 2018
1 parent 526c585 commit 10f65e0
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "system-runtime",
"version": "2.8.2",
"version": "2.8.3",
"description": "A JavaScript library that runs systems",
"license": "Apache-2.0",
"homepage": "https://designfirst.io/systemruntime/",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "system-runtime",
"version": "2.8.2",
"version": "2.8.3",
"description": "A JavaScript library that runs systems",
"homepage": "https://designfirst.io/systemruntime/",
"keywords": [
Expand Down
4 changes: 2 additions & 2 deletions src/log.js
Original file line number Diff line number Diff line change
Expand Up @@ -1048,7 +1048,7 @@ exports.actionInvokeError = function actionInvokeError(
) {
if (className !== 'Function') {
getLogger().error(
"error when trying to call the method '" +
"error when running the behavior '" +
state +
"' on component '" +
id +
Expand All @@ -1059,7 +1059,7 @@ exports.actionInvokeError = function actionInvokeError(
);
} else {
getLogger().error(
"error when trying to call the method '" +
"error when running the behavior '" +
state +
"' on component '" +
id +
Expand Down
2 changes: 1 addition & 1 deletion src/system/system-runtime.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/workflow.js
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ function action(component, state, action, params, isEvent) {
if (component && component.error) {
component.error({
message:
"error when trying to call the method '" +
"error when running the behavior '" +
state +
"' on component '" +
component.id() +
Expand All @@ -404,7 +404,7 @@ function action(component, state, action, params, isEvent) {
if ($helper.getRuntime()) {
$helper.getRuntime().error({
message:
"error when trying to call the method '" +
"error when running the behavior '" +
state +
"' on component '" +
component.id() +
Expand Down

0 comments on commit 10f65e0

Please sign in to comment.