Skip to content

Commit

Permalink
Merge pull request #307 from OpenVoiceOS/release-0.5.2a1
Browse files Browse the repository at this point in the history
Release 0.5.2a1
  • Loading branch information
JarbasAl authored Nov 21, 2024
2 parents 61c6165 + 587464d commit edd7108
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 6 deletions.
7 changes: 3 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
# Changelog

## [0.5.1a1](https://github.com/OpenVoiceOS/ovos-utils/tree/0.5.1a1) (2024-11-21)
## [0.5.2a1](https://github.com/OpenVoiceOS/ovos-utils/tree/0.5.2a1) (2024-11-21)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-utils/compare/0.5.0...0.5.1a1)
[Full Changelog](https://github.com/OpenVoiceOS/ovos-utils/compare/0.5.1...0.5.2a1)

**Merged pull requests:**

- fix: remove mycroft-bus-client compat [\#304](https://github.com/OpenVoiceOS/ovos-utils/pull/304) ([JarbasAl](https://github.com/JarbasAl))
- chore: support newer pyee [\#303](https://github.com/OpenVoiceOS/ovos-utils/pull/303) ([mikejgray](https://github.com/mikejgray))
- fix: restore backwards compat [\#306](https://github.com/OpenVoiceOS/ovos-utils/pull/306) ([JarbasAl](https://github.com/JarbasAl))



Expand Down
12 changes: 12 additions & 0 deletions ovos_utils/messagebus.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
from ovos_utils.fakebus import dig_for_message, FakeMessage, FakeBus
from ovos_utils.log import log_deprecation


log_deprecation("ovos_utils.messagebus has been deprecated since version 0.1.0!! "
"please import from ovos_utils.fakebus or ovos_bus_client directly", "1.0.0")


class Message(FakeMessage):
"""just for compat, stuff in the wild importing from here even with deprecation warnings..."""


4 changes: 2 additions & 2 deletions ovos_utils/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# START_VERSION_BLOCK
VERSION_MAJOR = 0
VERSION_MINOR = 5
VERSION_BUILD = 1
VERSION_ALPHA = 0
VERSION_BUILD = 2
VERSION_ALPHA = 1
# END_VERSION_BLOCK

0 comments on commit edd7108

Please sign in to comment.