Skip to content

Commit

Permalink
Prepare 1.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanhi committed Mar 3, 2024
1 parent 015ea6e commit 5590fb8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ and this project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0
Unreleased_
-----------

1.1.0_ - 2024-03-03
-------------------

Added
~~~~~
* (mkfs) `PR #30 <https://github.com/nathanhi/pyfatfs/pull/30>`_: Add support for different FAT12 cluster sizes for filesystems up to 256MB by `@zurcher <https://github.com/zurcher>`_ / `@Microsoft <https://github.com/Microsoft>`_
Expand Down Expand Up @@ -37,7 +40,7 @@ Changed
Removed
~~~~~~~

* `PR #36 <https://github.com/nathanhi/pyfatfs/pull/36>`_: Drop Python 3.7 support by `@zurcher <https://github.com/zurcher>`_ / `@Microsoft <https://github.com/Microsoft>`_
* `PR #36 <https://github.com/nathanhi/pyfatfs/pull/36>`_: Drop Python 3.6 & 3.7 support by `@zurcher <https://github.com/zurcher>`_ / `@Microsoft <https://github.com/Microsoft>`_

1.0.5_ - 2022-04-16
-------------------
Expand Down Expand Up @@ -203,7 +206,8 @@ Fixed
* `PR #2 <https://github.com/nathanhi/pyfatfs/pull/2>`_: Fix DOS time conversion by `@koolkdev <https://github.com/koolkdev>`_
* `PR #3 <https://github.com/nathanhi/pyfatfs/pull/3>`_: Fix reading from a file and implement arbitrary write by `@koolkdev <https://github.com/koolkdev>`_

.. _Unreleased: https://github.com/nathanhi/pyfatfs/compare/v1.0.5...HEAD
.. _Unreleased: https://github.com/nathanhi/pyfatfs/compare/v1.1.0...HEAD
.. _1.1.0: https://github.com/nathanhi/pyfatfs/compare/v1.0.5...v1.1.0
.. _1.0.5: https://github.com/nathanhi/pyfatfs/compare/v1.0.4...v1.0.5
.. _1.0.4: https://github.com/nathanhi/pyfatfs/compare/v1.0.3...v1.0.4
.. _1.0.3: https://github.com/nathanhi/pyfatfs/compare/v1.0.2...v1.0.3
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ build: venv
.PHONY: twine_upload
twine_upload: clean build
python3 -m venv $(VENV_DIR)/twine_venv
$(VENV_DIR)/twine_venv/$(VENV_BIN_DIR)/python3 -m pip install twine==4.0.2
$(VENV_DIR)/twine_venv/$(VENV_BIN_DIR)/python3 -m pip install twine==5.0.0
$(VENV_DIR)/twine_venv/$(VENV_BIN_DIR)/twine upload dist/*

.PHONY: coveralls_parallel
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
name = "pyfatfs"
description = "FAT12/FAT16/FAT32 implementation with VFAT support"
readme = "README.rst"
requires-python = "~=3.6"
requires-python = "~=3.8"
dependencies = ["fs~=2.4"]
keywords = ["filesystem", "PyFilesystem2", "FAT12", "FAT16", "FAT32", "VFAT", "LFN"]
license = {file = "LICENSE"}
Expand Down

0 comments on commit 5590fb8

Please sign in to comment.