Skip to content

Commit

Permalink
Bump version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lqmanh committed Aug 19, 2020
1 parent 4e39921 commit 67dc8d3
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 8 deletions.
7 changes: 7 additions & 0 deletions .travis.yml
Expand Up @@ -9,3 +9,10 @@ install:
- poetry install
script:
- poetry run pytest
deploy:
- provider: releases
edge: true
token: $GITHUB_TOKEN
on:
branch: master
tags: true
7 changes: 6 additions & 1 deletion CHANGELOG.md
@@ -1,6 +1,11 @@
## CHANGELOG

### Unreleased
### v0.3.0

#### Added

- Add some basic test cases for `PostgrestClient`
- Use Travis CI

#### Changed

Expand Down
10 changes: 6 additions & 4 deletions TODO.md
@@ -1,6 +1,8 @@
## ROADMAP
## TODO

- [ ] Exact match filtering
- [ ] AND and OR filters
- [ ] Counting
- [ ] CI/CD
- [ ] AND and OR filters
- [ ] Exact match filtering
- [ ] Add test cases for `RequestBuilder`
- [ ] Auto publish to Pypi
- [ ] Auto generate documentation
2 changes: 1 addition & 1 deletion postgrest_py/__version__.py
@@ -1 +1 @@
__version__ = "0.2.0"
__version__ = "0.3.0"
2 changes: 1 addition & 1 deletion pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "postgrest-py"
version = "0.2.0"
version = "0.3.0"
description = "PostgREST client for Python. This library provides an ORM interface to PostgREST."
authors = ["Lương Quang Mạnh <luongquangmanh85@gmail.com>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_postgrest_py.py
Expand Up @@ -2,4 +2,4 @@


def test_version():
assert __version__ == "0.2.0"
assert __version__ == "0.3.0"

0 comments on commit 67dc8d3

Please sign in to comment.