Browse Source

Bump lwext4 version to 1.0.0 & changelog update

pull/11/head
gkostka 9 years ago
parent
commit
9a1491ca1b
  1. 13
      CHANGELOG
  2. 4
      Makefile

13
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

4
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)

Loading…
Cancel
Save