Skip to content

Commit 25da534

Browse files
committed
Bump version to 0.1.1
1 parent 82e7f55 commit 25da534

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
## CHANGELOG
22

3+
### v0.1.1
4+
5+
#### Bugfixes
6+
7+
- Fix a typo in `Client.from_()`
8+
39
### v0.1.0
410

511
#### Features
612

713
- Add basic features
8-
9-
#### Bugfixes

postgrest_py/client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ def from_table(self, table: str) -> RequestBuilder:
3838
def from_(self, table: str) -> RequestBuilder:
3939
"""Alias to Self.from_table()."""
4040

41-
return self.fromTable(table)
41+
return self.from_table(table)

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "postgrest_py"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "PostgREST client for Python. This library provides an ORM interface to PostgREST."
55
authors = ["Lương Quang Mạnh <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)