Skip to content

Commit 9df0226

Browse files
committed
chore: bump version to 0.5.0
1 parent 4227bbc commit 9df0226

3 files changed

Lines changed: 19 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.5.0]
6+
7+
### Changed
8+
- Replace polling with asyncio.Future for O(1) message routing via `_pending_operations` HashMap
9+
- Add semaphore to limit concurrent requests (default 15, env `RUNWARE_MAX_CONCURRENT_REQUESTS`)
10+
- Add jitter on reconnect to prevent thundering herd
11+
- Increase `PING_TIMEOUT_DURATION` from 10s to 30s for stability
12+
- Graceful cancellation of pending operations on disconnect
13+
14+
### Added
15+
- Added `post_init` to `IImageInference`, `IImageCaption`, `IImageUpscale`, `IVideoInference`, `I3dInference`, `IAudioInference`, `IVideoBackgroundRemoval`
16+
- Added `promptExtend: Optional[bool]` to `ISettings`
17+
- Added `IBytedanceProviderSettings.optimizePromptMode: Optional[str]`
18+
- Added `settings` to `IVideoInference` dataclass
19+
- Added `draft: Optional[bool]`, `audio: Optional[bool]`, and `promptUpsampling: Optional[bool]` to `ISettings` dataclass
20+
- Added `post_init` to `ISettings` dataclass
21+
522
## [0.4.47]
623

724
### Added

runware/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
from .async_retry import *
77

88
__all__ = ["Runware"]
9-
__version__ = "0.4.47"
9+
__version__ = "0.5.0"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
setup(
77
name="runware",
88
license="MIT",
9-
version="0.4.47",
9+
version="0.5.0",
1010
author="Runware Inc.",
1111
author_email="python.sdk@runware.ai",
1212
description="The Python Runware SDK is used to interact with the Runware API, powered by the Runware inference platform. It supports image generation, video generation, image upscale, video upscale, image caption, video caption, image background removal, video background removal, audio generation, and more. It also allows the use of an existing gallery of models or selecting any model or LoRA from the CivitAI gallery. The API also supports inpainting, outpainting, and a series of other ControlNet models.",

0 commit comments

Comments
 (0)