From 2e9cd3b548bb8a11647bcc9d2230b1c043ea51e7 Mon Sep 17 00:00:00 2001 From: Brian Pugh Date: Sun, 28 Jan 2024 19:02:54 -0800 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.13.1=20=E2=86=92=201.14.0?= 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 | 6 +++--- library.json | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 71b388d..672b994 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.13.1 +current_version = 1.14.0 commit = True tag = True diff --git a/README.md b/README.md index d1dd5cd..431beb5 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.13.1 +idf.py add-dependency joltwallet/littlefs==1.14.0 ``` 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 8fda67b..766c4c1 100644 --- a/idf_component.yml +++ b/idf_component.yml @@ -1,4 +1,4 @@ -version: "1.13.1" +version: "1.14.0" 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 92af9f4..6a30a32 100644 --- a/include/esp_littlefs.h +++ b/include/esp_littlefs.h @@ -14,10 +14,10 @@ extern "C" { #endif -#define ESP_LITTLEFS_VERSION_NUMBER "1.13.1" +#define ESP_LITTLEFS_VERSION_NUMBER "1.14.0" #define ESP_LITTLEFS_VERSION_MAJOR 1 -#define ESP_LITTLEFS_VERSION_MINOR 13 -#define ESP_LITTLEFS_VERSION_PATCH 1 +#define ESP_LITTLEFS_VERSION_MINOR 14 +#define ESP_LITTLEFS_VERSION_PATCH 0 #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 6799e9f..b1ec592 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "esp_littlefs", - "version": "1.13.1", + "version": "1.14.0", "description": "LittleFS is a small fail-safe filesystem for micro-controllers.", "frameworks": "espidf", "platforms": "*",