Skip to content

Commit 540a520

Browse files
committed
bump: version 0.0.2 → 0.0.3
1 parent 038b4d5 commit 540a520

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
@@ -59,7 +59,7 @@ $ docker-compose up -d --build
5959
### Add a song:
6060

6161
```sh
62-
$ curl -d '{"name":"ALen Fit", "artist":"Helen", "year":"2015"}' -H "Content-Type: application/json" -X POST http://127.0.0.2:8001/songs
62+
$ curl -d '{"name":"ALen Fit", "artist":"Helen", "year":"2015"}' -H "Content-Type: application/json" -X POST http://127.0.0.3:8001/songs
6363
```
6464

6565
### 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.0.2"
6+
__version__ = "0.0.3"
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.0.2"
3+
version = "0.0.3"
44
description = "A Sample FastAPI app"
55
authors = ["Payam Taheri"]
66
license = "MIT"
@@ -80,7 +80,7 @@ exclude = ['.venv/*.*', 'app/songs/models.py', 'migrations/*.*', "alembic/*.*"]
8080

8181
[tool.commitizen]
8282
name = "cz_conventional_commits"
83-
version = "0.0.2"
83+
version = "0.0.3"
8484
tag_format = "v$version"
8585
version_files = [
8686
"README.md",

0 commit comments

Comments
 (0)