-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changed rpc.call and rpc.call_async to return bytes instead of python…
… objects; reworked docs
- Loading branch information
1 parent
afba1b6
commit 712c57e
Showing
32 changed files
with
471 additions
and
260 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,4 @@ tags | |
.s.vim | ||
dist/ | ||
node_modules/ | ||
tests/int_tst_fastapi/src | ||
tests/int_tst/src |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
pytest | ||
pytest-cov | ||
pytest-benchmark | ||
pytest-asyncio | ||
|
||
pydantic |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
annotated-types==0.6.0 | ||
coverage==7.4.1 | ||
coverage==7.4.4 | ||
exceptiongroup==1.2.0 | ||
iniconfig==2.0.0 | ||
packaging==23.2 | ||
packaging==24.0 | ||
pluggy==1.4.0 | ||
py-cpuinfo==9.0.0 | ||
pydantic==2.6.1 | ||
pydantic_core==2.16.2 | ||
pytest==8.0.0 | ||
pydantic==2.6.4 | ||
pydantic_core==2.16.3 | ||
pytest==8.1.1 | ||
pytest-asyncio==0.23.5.post1 | ||
pytest-benchmark==4.0.0 | ||
pytest-cov==4.1.0 | ||
tomli==2.0.1 | ||
typing_extensions==4.9.0 | ||
typing_extensions==4.10.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
pytest | ||
pytest-cov | ||
pytest-benchmark | ||
pytest-asyncio | ||
|
||
pydantic |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
annotated-types==0.6.0 | ||
coverage==7.4.3 | ||
coverage==7.4.4 | ||
iniconfig==2.0.0 | ||
packaging==23.2 | ||
packaging==24.0 | ||
pluggy==1.4.0 | ||
py-cpuinfo==9.0.0 | ||
pydantic==2.6.3 | ||
pydantic==2.6.4 | ||
pydantic_core==2.16.3 | ||
pytest==8.0.2 | ||
pytest==8.1.1 | ||
pytest-asyncio==0.23.5.post1 | ||
pytest-benchmark==4.0.0 | ||
pytest-cov==4.1.0 | ||
typing_extensions==4.10.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
pytest | ||
pytest-cov | ||
pytest-benchmark | ||
pytest-asyncio | ||
|
||
pydantic |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
pytest | ||
pytest-cov | ||
pytest-benchmark | ||
pytest-asyncio | ||
|
||
pydantic |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
pytest | ||
pytest-cov | ||
pytest-benchmark | ||
pytest-asyncio | ||
|
||
pydantic |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
## 0.2.0 (2024-03-17) | ||
|
||
**Incompatible changes** | ||
|
||
- changed `rpc.call` and `rpc.call_async` to return bytes instead of python | ||
dicts/lists | ||
|
||
|
||
## 0.1.0 | ||
|
||
Initial version. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[project] | ||
name = "synclane" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
description = "framework-agnostic RPC API with a smart auto-generated TypeScript client" | ||
authors = [ | ||
{email = "[email protected]", name = "Nikita Almakov"}, | ||
|
Oops, something went wrong.