From 41873c20fb5cdbcf28d7d6cc04e4bcb4a1305317 Mon Sep 17 00:00:00 2001 From: Brian Pugh Date: Tue, 6 Feb 2024 15:11:15 -0800 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.14.0=20=E2=86=92=201.14.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- README.md | 2 +- idf_component.yml | 2 +- include/esp_littlefs.h | 4 ++-- library.json | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 672b994..40f87ad 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.14.0 +current_version = 1.14.1 commit = True tag = True diff --git a/README.md b/README.md index 431beb5..19edc49 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.0 +idf.py add-dependency joltwallet/littlefs==1.14.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 766c4c1..6f0c321 100644 --- a/idf_component.yml +++ b/idf_component.yml @@ -1,4 +1,4 @@ -version: "1.14.0" +version: "1.14.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 6a30a32..7aca868 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.0" +#define ESP_LITTLEFS_VERSION_NUMBER "1.14.1" #define ESP_LITTLEFS_VERSION_MAJOR 1 #define ESP_LITTLEFS_VERSION_MINOR 14 -#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 b1ec592..19bb11c 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "esp_littlefs", - "version": "1.14.0", + "version": "1.14.1", "description": "LittleFS is a small fail-safe filesystem for micro-controllers.", "frameworks": "espidf", "platforms": "*",