Skip to content

Commit

Permalink
Update to v0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
StefansArya committed Jun 23, 2023
1 parent b6b15be commit 730cc84
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# 0.9.0

### Breaking Changes
- Change callable output port type with Trigger type
- Renamed type: `Blackprint.Types.Function` to `Blackprint.Types.Trigger`

### Features
- Allow function node to be paused on creation
- Add feature to linking variable between instances

# 0.8.15

### Bug Fix
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class Hello extends \Blackprint\Node {
// Please remember to capitalize the port name
// Set the output port structure for your node (Optional)
static $output = [
'Changed'=> Types::Function,
'Changed'=> Types::Trigger,
// Callable: $this->output['Changed']()

'Output'=> Types::Number,
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name":"blackprint/engine",
"description": "PHP Engine for Blackprint",
"version": "0.8.15",
"version": "0.9.0",
"keywords": ["blackprint", "engine"],
"license":"MIT",
"require": {
Expand Down

0 comments on commit 730cc84

Please sign in to comment.