diff --git a/.bumpversion.cfg b/.bumpversion.cfg index d4c343f..f64f4b5 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.14.7 +current_version = 1.14.8 commit = True tag = True diff --git a/README.md b/README.md index 3421ed6..f659d4b 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.7 +idf.py add-dependency joltwallet/littlefs==1.14.8 ``` 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 c7370c0..34d1d93 100644 --- a/idf_component.yml +++ b/idf_component.yml @@ -1,4 +1,4 @@ -version: "1.14.7" +version: "1.14.8" 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 66b7fd6..fd46d15 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.7" +#define ESP_LITTLEFS_VERSION_NUMBER "1.14.8" #define ESP_LITTLEFS_VERSION_MAJOR 1 #define ESP_LITTLEFS_VERSION_MINOR 14 -#define ESP_LITTLEFS_VERSION_PATCH 7 +#define ESP_LITTLEFS_VERSION_PATCH 8 #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 1c629a0..4e04f79 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "esp_littlefs", - "version": "1.14.7", + "version": "1.14.8", "description": "LittleFS is a small fail-safe filesystem for micro-controllers.", "frameworks": "espidf", "platforms": "*",