From 9a1491ca1bfb5305acb36e0fd22dde52e87a1cde Mon Sep 17 00:00:00 2001 From: gkostka Date: Tue, 9 Feb 2016 22:06:05 +0100 Subject: [PATCH] Bump lwext4 version to 1.0.0 & changelog update --- CHANGELOG | 13 +++++++++++++ Makefile | 4 ++-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 2b386e2..e4da0c0 100644 --- 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 diff --git a/Makefile b/Makefile index 1a5ae08..877cb5b 100644 --- a/Makefile +++ b/Makefile @@ -7,8 +7,8 @@ ifneq ($(shell test -d .git), 0) 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)