Releases: pyblish/pyblish-base
Releases · pyblish/pyblish-base
1.8.12
1.8.11
1.8.10
1.8.9
Minor addition to unify arguments to Context.create_instance()
and Instance()
.
from pyblish import api
context = api.Context()
instance = context.create_instance("pony", color="blue")
same_instance = api.Instance("pony", color="blue")
context.append(same_instance)
See #372 for details and thanks to @hannesdelbeke for this update!
1.8.8
1.8.7
Unicode support for plug-ins, now you can finally use emojis for variables or docstrings, go nuts!
Thanks to @davidlatwe for this feature.
1.8.6
Vendor libraries of Pyblish was added to your global sys.path
whenever it was imported, so if you found yourself unable to use your version of e.g. Click because of some older version appearing in its place, then this fix is for you.
- See #366 for details.
Thanks @buddly27 for the fix!