Skip to content

Commit a7fce5e

Browse files
committed
Update to v0.9.0
1 parent 31a0b49 commit a7fce5e

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# 0.9.0
2+
3+
### Breaking Changes
4+
- Change callable output port type with Trigger type
5+
- Renamed type: `types.FunctionType` to `Blackprint.Types.Trigger`
6+
7+
### Features
8+
- Allow function node to be paused on creation
9+
- Add feature to linking variable between instances
10+
111
# 0.8.15
212

313
### Bug Fix

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,13 @@ import BPNode # Import your own nodes located on ./BPNode directory
3535

3636
```python
3737
# file: ./BPNode/Example/Hello.py
38-
import types
3938

4039
@Blackprint.registerNode('Example/Hello')
4140
class Hello(Blackprint.Node):
4241
# Please remember to capitalize the port name
4342
# Set the output port structure for your node (Optional)
4443
output = {
45-
'Changed': types.FunctionType,
44+
'Changed': Blackprint.Types.Trigger,
4645
# this.output['Changed']() -- To call every connected port
4746

4847
'Output': int,

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "blackprint-engine"
3-
version = "0.8.15"
3+
version = "0.9.0"
44
description = "Blackprint engine for registering node/interface and run exported Blackprint on Python environment"
55
readme = "README.md"
66
requires-python = ">=3.10"

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='Blackprint',
5-
version='0.8.15',
5+
version='0.9.0',
66
packages=['Blackprint'],
77
# scripts=['bin/script1','bin/script2'],
88
url='https://github.com/Blackprint/engine-python',

0 commit comments

Comments
 (0)