Skip to content

Commit 34f3ddc

Browse files
committed
Bump 2.4.0
1 parent 848fa32 commit 34f3ddc

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Use System Runtime APIs to create your system:
2828

2929
```js
3030
// create a system
31-
let system = runtime.system('system');
31+
const system = runtime.system('system');
3232

3333
// add some business logic in the start method
3434
system.on('start', () => console.log('Hello world !'));
@@ -83,7 +83,7 @@ Just call *install* API to install and start your bundle:
8383

8484
```js
8585
// require System Runtime
86-
let runtime = require('system-runtime');
86+
const runtime = require('system-runtime');
8787

8888
// install your bundle
8989
runtime.install('system.json');

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "system-runtime",
3-
"version": "2.3.2",
3+
"version": "2.4.0",
44
"description": "A JavaScript library that runs systems",
55
"license": "Apache-2.0",
66
"homepage": "https://designfirst.io/systemruntime/",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "system-runtime",
3-
"version": "2.3.2",
3+
"version": "2.4.0",
44
"description": "A JavaScript library that runs systems",
55
"homepage": "https://designfirst.io/systemruntime/",
66
"keywords": [

src/systems/classes/_Runtime-class.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
"_Runtime": {
7373
"runtime": {
7474
"_id": "runtime",
75-
"version": "2.3.2"
75+
"version": "2.4.0"
7676
}
7777
}
7878
},

src/systems/core/system-runtime.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "system-runtime",
33
"master": false,
4-
"version": "2.3.2",
4+
"version": "2.4.0",
55
"description": "System Runtime",
66
"schemas": {},
77
"models": {},

0 commit comments

Comments
 (0)