Skip to content

Commit

Permalink
Version bump - 0.45.2
Browse files Browse the repository at this point in the history
Interactor: 0.16.1
  • Loading branch information
delfick committed Mar 16, 2024
1 parent e841515 commit f1f3bd8
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 4 deletions.
5 changes: 5 additions & 0 deletions apps/interactor/docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
Changelog
=========

.. _release-interactor-0-16-1:

0.16.1 - 16 March 2024
* Fixed embarrassing oversight with 0.16.0

.. _release-interactor-0-16-0:

0.16.0 - 16 March 2024
Expand Down
2 changes: 1 addition & 1 deletion apps/interactor/interactor/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = "0.16.0"
VERSION = "0.16.1"
ZEROCONF_TYPE = "_photons._tcp.local."


Expand Down
2 changes: 1 addition & 1 deletion apps/interactor/interactor/addon.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
log = logging.getLogger("interactor.addon")


@addon_hook(extras=[("lifx.photons", "core")])
@addon_hook(extras=[("lifx.photons", "core"), ("lifx.photons", "web_server")])
def __lifx__(collector, *args, **kwargs):
collector.register_converters(
{"interactor": Options.FieldSpec(formatter=MergedOptionStringFormatter)}
Expand Down
2 changes: 1 addition & 1 deletion apps/interactor/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ keywords = [
dependencies = [
"aiosqlite==0.17.0",
"alembic==1.13.1",
"lifx-photons-core[web-server]>=0.45.0",
"lifx-photons-core[web-server]>=0.45.2",
"netifaces==0.11.0",
"SQLAlchemy[asyncio]==2.0.28",
"zeroconf==0.36.12",
Expand Down
5 changes: 5 additions & 0 deletions docs/start/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
ChangeLog
=========

.. _release-core-0-45-2:

0.45.2 - 16 March 2024
* Fixed oversight around registering ``web_server``

.. _release-core-0-45-1:

0.45.1 - 16 March 2024
Expand Down
2 changes: 1 addition & 1 deletion modules/photons_app/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "0.45.1"
VERSION = "0.45.2"
1 change: 1 addition & 0 deletions modules/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ control = "photons_control.addon"
core = "photons_core"
pytest = "photons_pytest"
transport = "photons_transport.addon"
web_server = "photons_web_server.addon"

[project.entry-points.pytest11]
lifx_photons_core = "photons_pytest"
Expand Down

0 comments on commit f1f3bd8

Please sign in to comment.