Skip to content

Commit 31dc8d7

Browse files
author
github-actions
committed
0.2.1
Automatically generated by python-semantic-release
1 parent ea7ac0d commit 31dc8d7

File tree

3 files changed

+21
-8
lines changed

3 files changed

+21
-8
lines changed

CHANGELOG.md

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,40 @@
11
# CHANGELOG
22

3+
4+
5+
## v0.2.1 (2023-10-14)
6+
7+
### Fix
8+
9+
* fix: improve PydangoSession __init__ method (#14)
10+
11+
* fix: improve PydangoSession __init__ method
12+
* improve docs ([`ea7ac0d`](https://github.com/nadobando/pydangorm/commit/ea7ac0d00bbc60641daa3e8c0c99d6d7d096505b))
13+
14+
315
## v0.2.0 (2023-10-14)
416

517
### Chore
618

7-
- chore: fix pyproject.toml (#5) ([`e9063ff`](https://github.com/nadobando/pydangorm/commit/e9063ff034e4042d778b992aff2c55191d416fa9))
19+
* chore: fix pyproject.toml (#5) ([`e9063ff`](https://github.com/nadobando/pydangorm/commit/e9063ff034e4042d778b992aff2c55191d416fa9))
820

921
### Feature
1022

11-
- feat: support collection config kwargs some session utils and refactor ([`adf7f1a`](https://github.com/nadobando/pydangorm/commit/adf7f1a700b7537eaf7714e9d19abd331836be5f))
23+
* feat: support collection config kwargs some session utils and refactor ([`adf7f1a`](https://github.com/nadobando/pydangorm/commit/adf7f1a700b7537eaf7714e9d19abd331836be5f))
1224

1325
### Fix
1426

15-
- fix: mini refactor of files ([`0e711c7`](https://github.com/nadobando/pydangorm/commit/0e711c715614e6c4f0fb39951ae9969a79c3f72c))
27+
* fix: mini refactor of files ([`0e711c7`](https://github.com/nadobando/pydangorm/commit/0e711c715614e6c4f0fb39951ae9969a79c3f72c))
28+
29+
* fix: moved query execution to session ([`6957559`](https://github.com/nadobando/pydangorm/commit/6957559a25ef5bb75a3b66dbd45403987a3a633f))
1630

17-
- fix: moved query execution to session ([`6957559`](https://github.com/nadobando/pydangorm/commit/6957559a25ef5bb75a3b66dbd45403987a3a633f))
1831

1932
## v0.1.0 (2023-09-25)
2033

2134
### Build
2235

23-
- build: add py.typed (#3) ([`eb642eb`](https://github.com/nadobando/pydangorm/commit/eb642ebba7cba67b0fc37352776f2f23cedb6330))
36+
* build: add py.typed (#3) ([`eb642eb`](https://github.com/nadobando/pydangorm/commit/eb642ebba7cba67b0fc37352776f2f23cedb6330))
2437

2538
### Feature
2639

27-
- feat: save and fetch models (#1) ([`8935e4f`](https://github.com/nadobando/pydangorm/commit/8935e4f8ec5c39f300cb7f818000fe8563e21989))
40+
* feat: save and fetch models (#1) ([`8935e4f`](https://github.com/nadobando/pydangorm/commit/8935e4f8ec5c39f300cb7f818000fe8563e21989))

pydango/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from .query import AQLQuery
1111
from .query.operations import TraversalDirection
1212

13-
__version__ = "0.2.0"
13+
__version__ = "0.2.1"
1414
__all__ = [
1515
"PydangoSession",
1616
"VertexModel",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ name = "pydangorm"
9595
packages = [{include = "pydango"}]
9696
readme = "README.md"
9797
repository = "https://github.com/nadobando/pydangorm"
98-
version = "0.2.0"
98+
version = "0.2.1"
9999

100100
[tool.poetry.dependencies]
101101
aioarango = "^1.0.0"

0 commit comments

Comments
 (0)