Skip to content

Commit

Permalink
Update version, update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
madnoberson committed Mar 11, 2024
1 parent 9488517 commit 9a199d3
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 2 deletions.
23 changes: 23 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Changelog

## [v1.1.0](https://github.com/Awesome-Movie-Database/amdb-backend/releases/tag/v1.0.0) (2024-03-11)

### Added

- WEB API logout endpoint

### Changed

- [*Breaking change*] Now number of characters in `Movie` title must be more than 1 and less than 128
- [*Breaking change*] Now number of characters in `User` name must be more than 1 and less than 128
- [*Breaking change*] Now `User` name must not contain spaces
- [*Breaking change*] Now number of characters in `Review` title must be more than 5 and less than 128
- [*Breaking change*] Now number of characters in `Review` content must be more than 5 and less than 1024

### Fixed

- Misspell in 'How to run' instruction

### Echancements

- Now Session ID length is 128 characters


## [v1.0.0](https://github.com/Awesome-Movie-Database/amdb-backend/releases/tag/v1.0.0) (2024-03-10)

### Added
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ amdb = ["infrastructure/persistence/alembic/alembic.ini"]
[project]
name = "amdb"
description = "Awesome Movie Database Backend"
version = "1.0.0"
version = "1.1.0"
license = { file = "LICENSE" }
readme = "README.md"
requires-python = "==3.10.*"
Expand Down
2 changes: 1 addition & 1 deletion src/amdb/main/web_api/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def run_web_api() -> None:

app = FastAPI(
title="Awesome Movie Database",
version="1.0.0",
version="1.1.0",
swagger_ui_parameters={"defaultModelsExpandDepth": -1},
)
app.include_router(router)
Expand Down

0 comments on commit 9a199d3

Please sign in to comment.