diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 25cfa37..febb2f3 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.12.0 +current_version = 1.12.1 commit = True tag = True diff --git a/README.md b/README.md index fdb4f5b..3384a0a 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.12.0 +idf.py add-dependency joltwallet/littlefs==1.12.1 ``` 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 ec43bc9..4854367 100644 --- a/idf_component.yml +++ b/idf_component.yml @@ -1,4 +1,4 @@ -version: "1.12.0" +version: "1.12.1" 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 83c1eb7..cf70959 100644 --- a/include/esp_littlefs.h +++ b/include/esp_littlefs.h @@ -10,10 +10,10 @@ extern "C" { #endif -#define ESP_LITTLEFS_VERSION_NUMBER "1.12.0" +#define ESP_LITTLEFS_VERSION_NUMBER "1.12.1" #define ESP_LITTLEFS_VERSION_MAJOR 1 #define ESP_LITTLEFS_VERSION_MINOR 12 -#define ESP_LITTLEFS_VERSION_PATCH 0 +#define ESP_LITTLEFS_VERSION_PATCH 1 #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 6879333..859e75d 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "esp_littlefs", - "version": "1.12.0", + "version": "1.12.1", "description": "LittleFS is a small fail-safe filesystem for micro-controllers.", "frameworks": "espidf", "platforms": "*",