Skip to content

Commit

Permalink
🔖 Bump to v0.7.1 releasing #64
Browse files Browse the repository at this point in the history
  • Loading branch information
awtkns committed Apr 23, 2021
1 parent c86c9d1 commit 22a4104
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
**Source Code**: <a href="https://github.com/awtkns/fastapi-crudrouter" target="_blank">https://github.com/awtkns/fastapi-crudrouter</a>

---
Tired of rewriting the same generic CRUD routes? Need to rapidly prototype a feature for a presentation
Tired of rewriting generic CRUD routes? Need to rapidly prototype a feature for a presentation
or a hackathon? Thankfully, [fastapi-crudrouter](https://github.com/awtkns/fastapi-crudrouter) has your back. As an
extension to the APIRouter included with [FastAPI](https://fastapi.tiangolo.com/), the FastAPI CRUDRouter will automatically
generate and document your CRUD routes for you, all you have to do is pass your model and maybe your database connection.
Expand All @@ -36,7 +36,7 @@ pip install fastapi-crudrouter

## Basic Usage
Below is a simple example of what the CRUDRouter can do. In just ten lines of code, you can generate all
the crud routes you need for any model. A full list of the routes generated can be found [here](./routing).
the crud routes you need for any model. A full list of the routes generated can be found [here](./routing).

```python
from pydantic import BaseModel
Expand All @@ -60,7 +60,7 @@ routes. Listed below are some highlights.
- Ability to Provide Custom Create and Update Schemas ([docs](https://fastapi-crudrouter.awtkns.com/schemas/))
- Dynamic Generation of Create and Update Schemas ([docs](https://fastapi-crudrouter.awtkns.com/schemas/))
- Ability to Add, Customize, or Disable Specific Routes ([docs](https://fastapi-crudrouter.awtkns.com/routing/))
- Native Support for FastAPI Dependencies Injection ([docs](https://fastapi-crudrouter.awtkns.com/dependencies/))
- Native Support for FastAPI Dependency Injection ([docs](https://fastapi-crudrouter.awtkns.com/dependencies/))

## Supported Backends / ORMs
fastapi-crudrouter currently supports a number of backends / ORMs. Listed below are the backends currently supported. This list will
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

VERSION = "0.7.0"
VERSION = "0.7.1"

setup(
name="fastapi-crudrouter",
Expand Down
2 changes: 1 addition & 1 deletion tests/test_prefix.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ def router(request):

def test_prefix_lowercase(router):
assert type(router.prefix) is str
assert router.prefix != ''
assert router.prefix != ""
assert router.prefix == router.prefix.lower()

0 comments on commit 22a4104

Please sign in to comment.