Skip to content

Commit 67dc8d3

Browse files
committed
Bump version to 0.3.0
1 parent 4e39921 commit 67dc8d3

File tree

6 files changed

+22
-8
lines changed

6 files changed

+22
-8
lines changed

.travis.yml

+7
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,10 @@ install:
99
- poetry install
1010
script:
1111
- poetry run pytest
12+
deploy:
13+
- provider: releases
14+
edge: true
15+
token: $GITHUB_TOKEN
16+
on:
17+
branch: master
18+
tags: true

CHANGELOG.md

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

3-
### Unreleased
3+
### v0.3.0
4+
5+
#### Added
6+
7+
- Add some basic test cases for `PostgrestClient`
8+
- Use Travis CI
49

510
#### Changed
611

TODO.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
## ROADMAP
1+
## TODO
22

3-
- [ ] Exact match filtering
4-
- [ ] AND and OR filters
53
- [ ] Counting
6-
- [ ] CI/CD
4+
- [ ] AND and OR filters
5+
- [ ] Exact match filtering
6+
- [ ] Add test cases for `RequestBuilder`
7+
- [ ] Auto publish to Pypi
8+
- [ ] Auto generate documentation

postgrest_py/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.2.0"
1+
__version__ = "0.3.0"

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.2.0"
3+
version = "0.3.0"
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"

tests/test_postgrest_py.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33

44
def test_version():
5-
assert __version__ == "0.2.0"
5+
assert __version__ == "0.3.0"

0 commit comments

Comments
 (0)