Skip to content

Commit

Permalink
Added support for family-less instances (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
mottosso committed Jun 11, 2015
1 parent 58369aa commit 75f56c1
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGES
@@ -0,0 +1,7 @@
Changelog
=========

Version 0.1.2
--------------

- Added support for family-less instances
4 changes: 4 additions & 0 deletions pyblish_rpc/mocking.py
Expand Up @@ -385,6 +385,10 @@ def process(self, instance):
"data": {
"family": "diFamily"
}
},
{
"name": "NoFamily",
"data": {}
}
]

Expand Down
1 change: 0 additions & 1 deletion pyblish_rpc/schema/instance.json
Expand Up @@ -13,7 +13,6 @@
},
"data": {
"type": "object",
"required": ["family"],

"properties": {
"family": {
Expand Down
2 changes: 1 addition & 1 deletion pyblish_rpc/version.py
@@ -1,7 +1,7 @@

VERSION_MAJOR = 0
VERSION_MINOR = 1
VERSION_PATCH = 0
VERSION_PATCH = 1

version_info = (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH)
version = '%i.%i.%i' % version_info
Expand Down

0 comments on commit 75f56c1

Please sign in to comment.