Skip to content

Commit 0ed7d5b

Browse files
committed
bump: version 0.0.1 → 0.0.2
1 parent 1d91eb0 commit 0ed7d5b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ $ docker-compose up -d --build
2626
### Add a song:
2727

2828
```sh
29-
$ curl -d '{"name":"ALen Fit", "artist":"Helen", "year":"2015"}' -H "Content-Type: application/json" -X POST http://127.0.0.1:8001/songs
29+
$ curl -d '{"name":"ALen Fit", "artist":"Helen", "year":"2015"}' -H "Content-Type: application/json" -X POST http://127.0.0.2:8001/songs
3030
```
3131

3232
### Get all songs:

app/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"""
44
__author__ = "Payam Taheri"
55
__homepage__ = ""
6-
__version__ = "0.4.2"
6+
__version__ = "0.0.2"
77
__license__ = "MIT"

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "fastapi-toolkit"
3-
version = "0.4.2"
3+
version = "0.0.2"
44
description = "A Sample FastAPI app"
55
authors = ["Payam Taheri"]
66
license = "MIT"
@@ -79,7 +79,7 @@ exclude = ['.venv/*.*', 'app/songs/models.py', 'migrations/*.*']
7979

8080
[tool.commitizen]
8181
name = "cz_conventional_commits"
82-
version = "0.4.2"
82+
version = "0.0.2"
8383
tag_format = "v$version"
8484
version_files = [
8585
"README.md",

0 commit comments

Comments
 (0)