Skip to content

Commit

Permalink
update pyproject.toml dependencies| update documents| update readme |…
Browse files Browse the repository at this point in the history
… update changelog
  • Loading branch information
Jesparzarom committed Aug 22, 2023
1 parent 7aac775 commit 050f977
Show file tree
Hide file tree
Showing 9 changed files with 44 additions and 10 deletions.
3 changes: 2 additions & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ mkdocs:
# Optionally declare the Python requirements required to build your docs
python:
install:
- requirements: docs/requirements.txt
- requirements: docs/requirements.txt

15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,22 @@ _All notable changes to this project will be documented in this file._
_The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html)._

---

## Unreleased
- none

---

## Version 0.2.1
<small>Release in 2023-08-22</small>

**Changed**
- Version specifications of `flask>=2.3`, `deta>=1.2` dependencies in pyproject.toml
- Python version specification from 3.8 to 3.10 in pyproject.toml

---

## Version 0.2.0
<small>Release in 2023-08-22</small>

Expand Down Expand Up @@ -40,6 +53,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Updated the documentation.

---

## Version 0.1.1
<small>Release in 2023-08-09</small>

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## Version 0.2.0
> ⚠️ This is the initial version 0.2.0 and is currently in the alpha stage. It is not recommended for production use.
## Version 0.2.1
> ⚠️ This is the initial version 0.2.1 and is currently in the alpha stage. It is not recommended for production use.
---

Expand Down
15 changes: 15 additions & 0 deletions docs/about/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,22 @@ _All notable changes to this project will be documented in this file._
_The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html)._

---

## Unreleased
- none

---

## Version 0.2.1
<small>Release in 2023-08-22</small>

**Changed**
- Version specifications of `flask>=2.3`, `deta>=1.2` dependencies in pyproject.toml
- Python version specification from 3.8 to 3.10 in pyproject.toml

---

## Version 0.2.0
<small>Release in 2023-08-22</small>

Expand Down Expand Up @@ -39,6 +52,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Updated the documentation.

---

## Version 0.1.1
<small>Release in 2023-08-09</small>

Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<img src="images/flaskdeta.png" width=100%/>
</a>

## Version 0.2.0
> ⚠️ This is the initial version 0.2.0 and is currently in the alpha development stage. It is not recommended for production use.
## Version 0.2.1
> ⚠️ This is the initial version 0.2.1 and is currently in the alpha development stage. It is not recommended for production use.
---

Expand Down
Binary file modified docs/requirements.txt
Binary file not shown.
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ plugins:

# EXTRAS
extra:
version: 0.2.0
version: 0.2.1


copyright: Copyright &copy; 2023 J.P. Esparza.
Expand Down
9 changes: 6 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,16 @@ build-backend = "hatchling.build"

[project]
name = "flask-deta"
version = "0.2.0"
version = "0.2.1"
description = "A Python library for seamless integration with DetaSpace in Flask"
authors = [{ name = "J.P. Esparza" }]
maintainers = [{ name = "J.P. Esparza" }]
readme = "README.md"
requires-python = ">=3.8"
dependencies = ["Flask", "deta"]
requires-python = ">=3.10"
dependencies = [
"Flask>=2.3",
"deta>=1.2"
]
keywords = [
"Flask",
"Flask Package",
Expand Down
2 changes: 1 addition & 1 deletion src/flask_deta/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .deta_base import DetaBase
from .deta_drive import DetaDrive

__version__ = "0.2.0"
__version__ = "0.2.1"

0 comments on commit 050f977

Please sign in to comment.