Skip to content

Commit

Permalink
chore(release): v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Conventional Changelog Action committed Aug 7, 2021
1 parent 7171001 commit 1620df4
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 23 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# 0.1.0 (2021-08-07)


### Bug Fixes

* fix faulty docker config ([124cc9e](https://github.com/Heptagram-Bot/api/commit/124cc9e830445c4948833b9bf6ddcfca895bdd94))


### Features

* add changelog actions ([230d9f2](https://github.com/Heptagram-Bot/api/commit/230d9f29b800ce7b59ba6e45cb9e7343c809f4b8))
* add metadata for openapi ([71f6bd1](https://github.com/Heptagram-Bot/api/commit/71f6bd1fc82160213e873c23eda9f1c1e3577c10))
* Basic API setup ([1f7dfe5](https://github.com/Heptagram-Bot/api/commit/1f7dfe5c3d761e2aad56bafa5fa39a0fedf35539))
* Dev Environment setup ([92624ef](https://github.com/Heptagram-Bot/api/commit/92624ef2d16459fed1a71cc4195eb7e205ac3c58))
* diceroll and coinflip routes ([dc8e66c](https://github.com/Heptagram-Bot/api/commit/dc8e66cda8c8c28a5f99c50520424d0822e0277a))
* Query constraints for routes ([ca97955](https://github.com/Heptagram-Bot/api/commit/ca979556027355e90c4f58d5bec4fe584c05069b))
* set up docker config ([efbd608](https://github.com/Heptagram-Bot/api/commit/efbd608d090e6ac7a65357d0a3ba4747a7afb1d5))



48 changes: 25 additions & 23 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,34 +1,32 @@
version = "0.1.0"

[tool.poetry]
name = "heptagram-api"
version = "0.0.1"
description = "An API for the Heptagram Bot"
authors = ["Vyvy-vi <vyom.j@protonmail.com>"]
authors = [ "Vyvy-vi <vyom.j@protonmail.com>" ]
license = "BSD-3-Clause"
repository = "https://github.com/Heptgram-Bot/api"

[tool.poetry.dependencies]
python = "^3.8"
fastapi = "^0.68.0"
uvicorn = "^0.14.0"
pydantic = "^1.8.2"
ujson = "^4.0.2"
aiofiles = "^0.7.0"
Jinja2 = "^3.0.1"
itsdangerous = "^2.0.1"
python-dotenv = "^0.19.0"
pre-commit = "^2.13.0"

[tool.poetry.dev-dependencies]
flake8 = "^3.9.2"
black = "^21.6b0"
isort = "^5.9.3"
pytest = "^6.2.4"
pre-commit = "^2.13.0"
taskipy = "^1.8.1"
[tool.poetry.dependencies]
python = "^3.8"
fastapi = "^0.68.0"
uvicorn = "^0.14.0"
pydantic = "^1.8.2"
ujson = "^4.0.2"
aiofiles = "^0.7.0"
Jinja2 = "^3.0.1"
itsdangerous = "^2.0.1"
python-dotenv = "^0.19.0"
pre-commit = "^2.13.0"

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dev-dependencies]
flake8 = "^3.9.2"
black = "^21.6b0"
isort = "^5.9.3"
pytest = "^6.2.4"
pre-commit = "^2.13.0"
taskipy = "^1.8.1"

[tool.taskipy.tasks]
lint = "flake8 ."
Expand All @@ -39,3 +37,7 @@ black = "black ."
start = "uvicorn src.main:app"
precommit = "pre-commit install --hook-type pre-commit --hook-type pre-push"
test = "pytest ."

[build-system]
requires = [ "poetry-core>=1.0.0" ]
build-backend = "poetry.core.masonry.api"

0 comments on commit 1620df4

Please sign in to comment.