shithub: lwext4

Download patch

ref: 9a1491ca1bfb5305acb36e0fd22dde52e87a1cde
parent: 222d026d9875be802e35f75d07b127856bc214f4
author: gkostka <kostka.grzegorz@gmail.com>
date: Tue Feb 9 17:06:05 EST 2016

Bump lwext4 version to 1.0.0 & changelog update

--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,16 @@
+lwext4-1.0.0
+============
+* new extent module implementation (handle unwritten extents correctly)
+* xattr support
+* journaling transactions & recover support
+* improve configurations (with automatic generated config file)
+* move stm32disco demo to separate repository
+* test suite & tools improvements (more tests on autogenerated images)
+* new filesystem tools: lwext4-mkfs, lwext4-mbr
+* travis continious integration
+* lot of bugfixes and minor improvements...
+
+
 lwext4-0.8.0
 ============
 * improve ext4_dir_entry_next
--- a/Makefile
+++ b/Makefile
@@ -7,8 +7,8 @@
 GIT_SHORT_HASH:= $(shell git rev-parse --short HEAD)
 endif
 
-VERSION_MAJOR = 0
-VERSION_MINOR = 8
+VERSION_MAJOR = 1
+VERSION_MINOR = 0
 VERSION_PATCH = 0
 
 VERSION = $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_PATCH)-$(GIT_SHORT_HASH)