From 49d4b35c1e6618f53480851b9124a2dc20ec4af1 Mon Sep 17 00:00:00 2001 From: Jocelin Hounon Date: Tue, 29 Nov 2022 00:17:36 +0100 Subject: [PATCH] Update `CHANGELOG.md` (#25) --- .flake8 | 13 ------------- CHANGELOG.md | 42 +----------------------------------------- docs/changelog.md | 8 ++++++++ 3 files changed, 9 insertions(+), 54 deletions(-) delete mode 100644 .flake8 diff --git a/.flake8 b/.flake8 deleted file mode 100644 index e65cf84..0000000 --- a/.flake8 +++ /dev/null @@ -1,13 +0,0 @@ -[flake8] -max-line-length = 88 -max-complexity = 10 -select = C,E,F,W,B,B950 -ignore = E203,E501,W503 -exclude = - .git, - __pycache__, - *.egg-info, - .nox, - .pytest_cache, - .mypy_cache - __init__.py \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index d4ba8a9..b47930c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,43 +1,3 @@ # Changelog -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). - -## [0.1.5] - 2022-10-15 - ---- - -### Added - -- Add py.typed(PEP 561) by @jowilf https://github.com/jowilf/sqlalchemy-file/pull/14 - -## [0.1.4] - 2022-08-30 - ---- - -### Added - -- Add `upload_storage` to the default information saved into the database. Before, `upload_storage` can be extracted - from `path` attribute. Now you can access directly with `file['upload_storage']` by - @jowilf https://github.com/jowilf/sqlalchemy-file/pull/11 -- Accept additional metadata from `File` object by @jowilf https://github.com/jowilf/sqlalchemy-file/pull/11 -- Add section [Upload File](https://jowilf.github.io/sqlalchemy-file/tutorial/using-files-in-models/#upload-file) to the - documentation - -## [0.1.3] - 2022-08-23 - ---- - -### Added - -- Add `thumbnail_size` property to ImageField by @jowilf https://github.com/jowilf/sqlalchemy-file/pull/9 - -## [0.1.2] - 2022-08-11 - ---- - -### Added - -- Add CHANGELOG.md +Please check [this page in the documentation](https://jowilf.github.io/sqlalchemy-file/changelog/). \ No newline at end of file diff --git a/docs/changelog.md b/docs/changelog.md index 196ae68..8d94b6d 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -4,6 +4,14 @@ 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). +## [0.2.0] - 2022-11-28 + +--- +### Added + +- Allow storage extra & headers attributes in [#18](https://github.com/jowilf/sqlalchemy-file/pull/18) + + ## [0.1.5] - 2022-10-15 ---