Skip to content

Commit

Permalink
Bump version: 1.14.0 → 1.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianPugh committed Feb 6, 2024
1 parent b8001cc commit 41873c2
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.14.0
current_version = 1.14.1
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion idf_component.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
4 changes: 2 additions & 2 deletions include/esp_littlefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -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": "*",
Expand Down

0 comments on commit 41873c2

Please sign in to comment.