Skip to content

Commit

Permalink
Merge pull request #132 from OpenVoiceOS/release-0.1.5a1
Browse files Browse the repository at this point in the history
Release 0.1.5a1
  • Loading branch information
JarbasAl authored Oct 21, 2024
2 parents 66fae02 + 65ed893 commit b334702
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 17 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Changelog

## [0.1.4a1](https://github.com/OpenVoiceOS/ovos-bus-client/tree/0.1.4a1) (2024-10-16)
## [0.1.5a1](https://github.com/OpenVoiceOS/ovos-bus-client/tree/0.1.5a1) (2024-10-21)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-bus-client/compare/0.1.3...0.1.4a1)
[Full Changelog](https://github.com/OpenVoiceOS/ovos-bus-client/compare/0.1.4...0.1.5a1)

**Merged pull requests:**

- fix:standardize\_lang [\#128](https://github.com/OpenVoiceOS/ovos-bus-client/pull/128) ([JarbasAl](https://github.com/JarbasAl))
- fix:log spam [\#131](https://github.com/OpenVoiceOS/ovos-bus-client/pull/131) ([JarbasAl](https://github.com/JarbasAl))



Expand Down
12 changes: 0 additions & 12 deletions ovos_bus_client/client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -343,20 +343,8 @@ def _remove_normal(self, event_name, func):
except (ValueError, KeyError):
LOG.warning('Failed to remove event %s: %s',
event_name, str(func))
for line in traceback.format_stack():
LOG.warning(line.strip())

if event_name not in self.emitter._events:
LOG.debug("Not able to find '%s'", event_name)
LOG.warning("Existing events: %s", repr(self.emitter._events))
for evt in self.emitter._events:
LOG.warning(" %s", repr(evt))
LOG.warning(" %s", repr(self.emitter._events[evt]))
if event_name in self.emitter._events:
LOG.debug("Removing found '%s'", event_name)
else:
LOG.debug("Not able to find '%s'", event_name)
LOG.warning('----- End dump -----')

def remove_all_listeners(self, event_name: str):
"""
Expand Down
4 changes: 2 additions & 2 deletions ovos_bus_client/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# START_VERSION_BLOCK
VERSION_MAJOR = 0
VERSION_MINOR = 1
VERSION_BUILD = 4
VERSION_ALPHA = 0
VERSION_BUILD = 5
VERSION_ALPHA = 1
# END_VERSION_BLOCK

0 comments on commit b334702

Please sign in to comment.