Skip to content

Commit

Permalink
bump version to 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wemoloh committed Nov 2, 2022
1 parent fe4b08a commit b032049
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,11 @@ venv/bin/pip install -e .
venv/bin/pip install -r requirements-dev.txt
venv/bin/pytest
```

## Python version compatibility

Version 2.0 of this package dropped support for Python 3.4-3.6 in order to take
advantage of modern Python features (e.g. `async`/`await` syntax). If you need
to support those older Python versions, use version 1.x of this package. The
two implementations are entirely compatible with each other over the wire; no
changes were made to the Eider RPC protocol.
2 changes: 1 addition & 1 deletion eider.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class WebSocketCommonProtocol:
WS_LIB_DEFAULT = 'aiohttp' if aiohttp else 'websockets' if websockets else None


__version__ = '1.0.0'
__version__ = '2.0.0'


async def async_for(iterable, body):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "eider"
version = "1.0.0"
version = "2.0.0"
authors = [
{ name="Bart Robinson", email="bartdrobinson@gmail.com" },
]
Expand Down

0 comments on commit b032049

Please sign in to comment.