Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## v0.8.6

### Bug Fixes
- **Checker and Scheduler Modules**: Updated checker and scheduler modules to improve functionality
- **Readonly Instance**: Removed readonly instance to fix configuration issues

### Maintenance
- **Dependencies**: Upgraded dependencies with uv sync --upgrade

**Full Changelog**: https://github.com/crestalnetwork/intentkit/compare/v0.8.5...v0.8.6

## v0.8.5

### Bug Fixes
Expand Down
8 changes: 7 additions & 1 deletion app/telegram.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,10 @@
)

if __name__ == "__main__":
asyncio.run(run_telegram_server())
# Create a new event loop to avoid conflicts with nest_asyncio
loop = asyncio.new_event_loop()
asyncio.set_event_loop(loop)
try:
loop.run_until_complete(run_telegram_server())
finally:
loop.close()
Loading