Skip to content

Commit

Permalink
Add the ability to for iotile modules to create build_resources for i…
Browse files Browse the repository at this point in the history
…otile ship(#948)
  • Loading branch information
Tim Froehlich committed Feb 21, 2020
1 parent ef77b7a commit 123f46a
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 6 deletions.
4 changes: 4 additions & 0 deletions iotilebuild/RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All major changes in each released version of IOTileBuild are listed here.

## 3.0.12

- Add ability for iotile modules to create build_resource products

## 3.0.11

- Allow bundling data file with support wheels
Expand Down
1 change: 1 addition & 0 deletions iotilebuild/iotile/build/config/site_scons/pythondist.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

ENTRY_POINT_MAP = {
'build_step': 'iotile.recipe_action',
'build_resource': 'iotile.recipe_resource',
'app_module': 'iotile.app',
'proxy_module': 'iotile.proxy',
'emulated_tile': 'iotile.emulated_tile',
Expand Down
2 changes: 1 addition & 1 deletion iotilebuild/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
license="LGPLv3",
install_requires=[
"crcmod>=1.7.0",
"iotile-core>=5.0.0,<6",
"iotile-core>=5.0.13,<6",
"sphinx>=2,<3",
"jinja2>=2.10.0,<3",
"breathe>=4.11.0,<5",
Expand Down
2 changes: 1 addition & 1 deletion iotilebuild/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "3.0.11"
version = "3.0.12"
4 changes: 4 additions & 0 deletions iotilecore/RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All major changes in each released version of `iotile-core` are listed here.

## HEAD

## 5.0.13

- Add ability for iotile modules to create build_resource products

## 5.0.12

- Refactor OperationManager for usability. It was designed to create maintainable networking
Expand Down
1 change: 1 addition & 0 deletions iotilecore/iotile/core/dev/iotileobj.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ class IOTile(object):

PYTHON_PRODUCTS = frozenset([
"build_step",
"build_resource",
"app_module",
"proxy_module",
"type_package",
Expand Down
2 changes: 1 addition & 1 deletion iotilecore/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "5.0.12"
version = "5.0.13"
4 changes: 4 additions & 0 deletions iotileship/RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All major changes in each released version of IOTileShip are listed here.

## 1.0.9

- Add ability for iotile modules to create build_resource products

## 1.0.8

- Fix py3 raw_input error in PromptStep
Expand Down
2 changes: 1 addition & 1 deletion iotileship/iotile/ship/recipe_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def __init__(self):
for name, action in reg.load_extensions('iotile.recipe_action', product_name='build_step'):
self._recipe_actions[name] = action

for name, resource in reg.load_extensions('iotile.recipe_resource'):
for name, resource in reg.load_extensions('iotile.recipe_resource', product_name='build_resource'):
self._recipe_resources[name] = resource

def is_valid_action(self, name):
Expand Down
2 changes: 1 addition & 1 deletion iotileship/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
version=version.version,
license="LGPLv3",
install_requires=[
"iotile-core>=5.0.0,<6",
"iotile-core>=5.0.13,<6",
"pyaml>=18.11.0,<19",
"pyyaml>5.1,<6"
],
Expand Down
2 changes: 1 addition & 1 deletion iotileship/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "1.0.8"
version = "1.0.9"

0 comments on commit 123f46a

Please sign in to comment.