diff --git a/.bumpversion.cfg b/.bumpversion.cfg index e728375..d4c343f 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.14.6 +current_version = 1.14.7 commit = True tag = True diff --git a/README.md b/README.md index 79fceee..3421ed6 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ There are two ways to add this component to your project 1. As a ESP-IDF managed component: In your project directory run ``` -idf.py add-dependency joltwallet/littlefs==1.14.6 +idf.py add-dependency joltwallet/littlefs==1.14.7 ``` 2. As a submodule: In your project, add this as a submodule to your `components/` directory. diff --git a/idf_component.yml b/idf_component.yml index afa6e2b..c7370c0 100644 --- a/idf_component.yml +++ b/idf_component.yml @@ -1,4 +1,4 @@ -version: "1.14.6" +version: "1.14.7" description: LittleFS is a small fail-safe filesystem for micro-controllers. url: https://github.com/joltwallet/esp_littlefs dependencies: diff --git a/include/esp_littlefs.h b/include/esp_littlefs.h index 881913d..66b7fd6 100644 --- a/include/esp_littlefs.h +++ b/include/esp_littlefs.h @@ -14,10 +14,10 @@ extern "C" { #endif -#define ESP_LITTLEFS_VERSION_NUMBER "1.14.6" +#define ESP_LITTLEFS_VERSION_NUMBER "1.14.7" #define ESP_LITTLEFS_VERSION_MAJOR 1 #define ESP_LITTLEFS_VERSION_MINOR 14 -#define ESP_LITTLEFS_VERSION_PATCH 6 +#define ESP_LITTLEFS_VERSION_PATCH 7 #if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(4, 4, 2) && CONFIG_VFS_SUPPORT_DIR #define ESP_LITTLEFS_ENABLE_FTRUNCATE diff --git a/library.json b/library.json index 3d190be..1c629a0 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "esp_littlefs", - "version": "1.14.6", + "version": "1.14.7", "description": "LittleFS is a small fail-safe filesystem for micro-controllers.", "frameworks": "espidf", "platforms": "*",