File tree 6 files changed +22
-8
lines changed
6 files changed +22
-8
lines changed Original file line number Diff line number Diff line change @@ -9,3 +9,10 @@ install:
9
9
- poetry install
10
10
script :
11
11
- poetry run pytest
12
+ deploy :
13
+ - provider : releases
14
+ edge : true
15
+ token : $GITHUB_TOKEN
16
+ on :
17
+ branch : master
18
+ tags : true
Original file line number Diff line number Diff line change 1
1
## CHANGELOG
2
2
3
- ### Unreleased
3
+ ### v0.3.0
4
+
5
+ #### Added
6
+
7
+ - Add some basic test cases for ` PostgrestClient `
8
+ - Use Travis CI
4
9
5
10
#### Changed
6
11
Original file line number Diff line number Diff line change 1
- ## ROADMAP
1
+ ## TODO
2
2
3
- - [ ] Exact match filtering
4
- - [ ] AND and OR filters
5
3
- [ ] 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
Original file line number Diff line number Diff line change 1
- __version__ = "0.2 .0"
1
+ __version__ = "0.3 .0"
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " postgrest-py"
3
- version = " 0.2 .0"
3
+ version = " 0.3 .0"
4
4
description = " PostgREST client for Python. This library provides an ORM interface to PostgREST."
5
5
authors = [
" Lương Quang Mạnh <[email protected] >" ]
6
6
license = " MIT"
Original file line number Diff line number Diff line change 2
2
3
3
4
4
def test_version ():
5
- assert __version__ == "0.2 .0"
5
+ assert __version__ == "0.3 .0"
You can’t perform that action at this time.
0 commit comments