Skip to content

Commit

Permalink
Release v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanhi committed Apr 7, 2021
1 parent ee77c54 commit 425c077
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 14 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,7 @@ on:

jobs:
deploy:

runs-on: ubuntu-latest
needs: test

steps:
- uses: actions/checkout@v2
- name: Set up Python
Expand Down
11 changes: 5 additions & 6 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_
-----------

0.2.0_ - 2021-04-07
-------------------

Added
~~~~~

Expand All @@ -19,11 +22,6 @@ Fixed
~~~~~

* Lower required minimum version of PyFilesystem2 to 2.4.0
* Update internal task & test dependencies:
* `PR #8 <https://github.com/nathanhi/pyfatfs/pull/8>`_: Bump bleach from 3.2.1 to 3.3.0
* `PR #9 <https://github.com/nathanhi/pyfatfs/pull/9>`_: Bump cryptography from 3.3.1 to 3.4.6
* `PR #11 <https://github.com/nathanhi/pyfatfs/pull/11>`_: Bump urllib3 from 1.26.2 to 1.26.4
* `PR #12 <https://github.com/nathanhi/pyfatfs/pull/12>`_: Bump jinja2 from 2.11.2 to 2.11.3
* Do not fail with ``RemoveRootError`` on ``removetree("/")``
* ``openbin`` now sets the ``b`` mode on file open
* Support non-standard Linux formatted filesystems (i.e. FAT32 with less than 65525 clusters)
Expand Down Expand Up @@ -72,7 +70,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/v0.1.2...HEAD
.. _Unreleased: https://github.com/nathanhi/pyfatfs/compare/v0.2.0...HEAD
.. _0.2.0: https://github.com/nathanhi/pyfatfs/compare/v0.1.2...v0.2.0
.. _0.1.2: https://github.com/nathanhi/pyfatfs/compare/v0.1.1...v0.1.2
.. _0.1.1: https://github.com/nathanhi/pyfatfs/compare/v0.1.0...v0.1.1
.. _0.1.0: https://github.com/nathanhi/pyfatfs/releases/tag/v0.1.0
9 changes: 4 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,10 @@ without PyFilesystem2 abstraction.
pyfatfs supports FAT12/16/32 as well as the VFAT extension (long file names).

It currently is in an early development state and expected to be unstable and
contain bugs. For FAT12, currently only read-only access is supported and on
FAT32 filesystems the FSInfo struct, containing the free cluster information used
to quickly calculate the free space and easily access information such as the
next free cluster in the FAT, is not yet supported, so it will be reported by
fsck operations after writes.
contain bugs. On FAT32 filesystems the FSInfo struct, containing the free cluster
information used to quickly calculate the free space and easily access information
such as the next free cluster in the FAT, is not yet supported, so it will be
reported by fsck operations after writes.

Installation
------------
Expand Down

0 comments on commit 425c077

Please sign in to comment.