Skip to content

Commit 48f45fb

Browse files
authored
Release 0.3.0 (#38)
* Update classifiers * Release 0.3.0
1 parent 8043189 commit 48f45fb

File tree

3 files changed

+17
-9
lines changed

3 files changed

+17
-9
lines changed

docs/changelog.md

+8
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.3.0] - 2023-01-09
8+
9+
---
10+
### Added
11+
12+
- Support for apache-libloud 3.7
13+
14+
715
## [0.2.0] - 2022-11-28
816

917
---

pyproject.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "sqlalchemy-file"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
description = "SQLAlchemy-file is a SQLAlchemy extension for attaching files to SQLAlchemy model and uploading them to various storage."
55
authors = ["Jocelin Hounon <[email protected]>"]
66
license = "MIT"
@@ -18,11 +18,11 @@ classifiers = [
1818
'Operating System :: OS Independent',
1919
'Programming Language :: Python',
2020
'Topic :: Software Development :: Libraries :: Python Modules',
21-
'Programming Language :: Python :: 3.6',
2221
'Programming Language :: Python :: 3.7',
2322
'Programming Language :: Python :: 3.8',
2423
'Programming Language :: Python :: 3.9',
2524
'Programming Language :: Python :: 3.10',
25+
'Programming Language :: Python :: 3.11',
2626
"Topic :: Database",
2727
"Topic :: Database :: Database Engines/Servers",
2828
]
@@ -35,17 +35,17 @@ apache-libcloud = ">=3.6.0,<3.8"
3535
[tool.poetry.group.dev.dependencies]
3636
pytest = "^7.2.0"
3737
mypy = "0.991"
38-
black = "22.10.0"
39-
ruff = "0.0.146"
38+
black = "22.12.0"
39+
ruff = "0.0.215"
4040
sqlmodel = "^0.0.8"
4141
Pillow = "^9.3.0"
4242
fasteners = "^0.18"
43-
coverage = { extras = ["toml"], version = "^6.5.0" }
44-
mkdocs-material = "^8.5.10"
43+
coverage = { extras = ["toml"], version = "^7.0.4" }
44+
mkdocs-material = "^9.0.3"
4545
PyMySQL = { extras = ["rsa"], version = "^1.0.2" }
4646
psycopg2-binary = "^2.9.5"
4747
mkdocstrings = { extras = ["python"], version = "^0.19.0" }
48-
fastapi = "^0.88.0"
48+
fastapi = "^0.89.0"
4949
uvicorn = "^0.20.0"
5050
python-multipart = "^0.0.5"
5151
Flask = "^2.2.2"
@@ -54,7 +54,7 @@ pre-commit = "^2.20.0"
5454

5555

5656
[tool.coverage.report]
57-
fail_under = 95
57+
fail_under = 99
5858
show_missing = true
5959
exclude_lines = [
6060
"pragma: no cover",

sqlalchemy_file/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.2.0"
1+
__version__ = "0.3.0"
22

33
from .file import File as File
44
from .types import FileField as FileField

0 commit comments

Comments
 (0)