Skip to content

Commit

Permalink
Bump version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkMatterCore committed Jun 19, 2021
1 parent 2f116e2 commit 782aa51
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ CXXFLAGS := $(CFLAGS) -fno-rtti -fno-exceptions

ASFLAGS := -g $(ARCH)

ifeq ($(filter $(MAKECMDGOALS),clean dist-src),)
ifeq ($(filter $(MAKECMDGOALS),clean dist-src fs-libs),)
# Check BUILD_TYPE flag
ifneq ($(origin BUILD_TYPE),undefined)
ifeq (${BUILD_TYPE},ISC)
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,13 @@ Thanks to
Changelog
--------------

**v0.2.5:**

* Updated lwext4 patch to fix mountpoint corruption issues if a mountpoint name is reused after a previous call to `ext4_mount` failed.
* This fixes a data abort discovered by [phisch](https://github.com/phisch). Thanks for the report!
* The fix is based on [HenriChataing](https://github.com/HenriChataing)'s [pull request in lwext4's repository](https://github.com/gkostka/lwext4/pull/51), but also adds an additional `memset` call to `ext4_umount` to fully clear every unmounted mountpoint.
* A note to all developers using the GPL-licensed version of the library: update the `switch-lwext4` package by running `make fs-libs` in your libusbhsfs clone *before* building your project.

**v0.2.4:**

* Updated FatFs to R0.14b.
Expand Down
2 changes: 1 addition & 1 deletion include/usbhsfs.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ extern "C" {
/// Library version.
#define LIBUSBHSFS_VERSION_MAJOR 0
#define LIBUSBHSFS_VERSION_MINOR 2
#define LIBUSBHSFS_VERSION_MICRO 4
#define LIBUSBHSFS_VERSION_MICRO 5

/// Helper macro to generate a string based on a filesystem type value.
#define LIBUSBHSFS_FS_TYPE_STR(x) ((x) == UsbHsFsDeviceFileSystemType_FAT12 ? "FAT12" : ((x) == UsbHsFsDeviceFileSystemType_FAT16 ? "FAT16" : ((x) == UsbHsFsDeviceFileSystemType_FAT32 ? "FAT32" : \
Expand Down
2 changes: 1 addition & 1 deletion liblwext4/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ MAKEPKG := dkp-makepkg
endif

all:
@$(MAKEPKG) -i -s --needed --noconfirm > /dev/null
@$(MAKEPKG) -c -C -f -i -s --noconfirm > /dev/null

deps:
@pacman -S --needed --noconfirm patch cmake > /dev/null
4 changes: 2 additions & 2 deletions liblwext4/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
pkgbasename=lwext4
pkgname=switch-${pkgbasename}
pkgver=733b2c40d7121900e339bee8784977467a9fe8c9
pkgrel=4
pkgrel=3
pkgdesc='ext2/ext3/ext4 filesystem library for microcontrollers'
url='https://github.com/gkostka/lwext4'
license=('GPL')
Expand All @@ -17,7 +17,7 @@ source=(
)
sha256sums=(
'7840f378f39483e5de25dbd7271652b187263c4d7e116db395effe7c6a5e692e'
'b66c88824a194e301dd8a9d19a1c0e82d599421aa006b418f941323edc7ff0a9'
'6bddc3ded6ba6c00c31346f48397699557c699126327afccff880004b2e755c5'
)

prepare() {
Expand Down
2 changes: 1 addition & 1 deletion libntfs-3g/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ MAKEPKG := dkp-makepkg
endif

all:
@$(MAKEPKG) -i -s --needed --noconfirm > /dev/null
@$(MAKEPKG) -c -C -f -i -s --noconfirm > /dev/null

deps:
@pacman -S --needed --noconfirm patch > /dev/null

0 comments on commit 782aa51

Please sign in to comment.