Skip to content

Commit 05570ea

Browse files
committed
chore(release): v3.1.2
1 parent 64dc710 commit 05570ea

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,14 @@
22

33
All notable changes to this project will be documented in this file. Dates are displayed in UTC.
44

5+
#### [3.1.2](https://github.com/Raiper34/simple-tree-utils/compare/3.1.1...3.1.2)
6+
7+
- fix(delete): fix delete and deleteBy methods, because implementation did not work properly [`64dc710`](https://github.com/Raiper34/simple-tree-utils/commit/64dc7109753b19214fc8fb55c203da8f589ab4ba)
8+
59
#### [3.1.1](https://github.com/Raiper34/simple-tree-utils/compare/3.1.0...3.1.1)
610

11+
> 12 April 2025
12+
713
- fix(deleteby): fix deleteBy filter is not function bug [`0f91992`](https://github.com/Raiper34/simple-tree-utils/commit/0f919922bfe7491f62edebb5df6183f14c745202)
814

915
#### [3.1.0](https://github.com/Raiper34/simple-tree-utils/compare/3.0.1...3.1.0)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ npm install simple-tree-utils --save
3535
```
3636
or with jsdelivr
3737
```html
38-
<script src="https://cdn.jsdelivr.net/npm/[email protected].1/dist/simple-tree-utils.iife.js"></script>
38+
<script src="https://cdn.jsdelivr.net/npm/[email protected].2/dist/simple-tree-utils.iife.js"></script>
3939
```
4040

4141
# 📚 Documentation
@@ -98,7 +98,7 @@ treeUtils.tree2List(tree);
9898
You can also use this library in the browser without compiling using jsDelivr.
9999
Import script into HTML file, and you can access classes through the global `treeUtils` object.
100100
```html
101-
<script src="https://cdn.jsdelivr.net/npm/[email protected].1/dist/simple-tree-utils.iife.js"></script>
101+
<script src="https://cdn.jsdelivr.net/npm/[email protected].2/dist/simple-tree-utils.iife.js"></script>
102102
<script>
103103
const utils = new simpleTreeUtils.TreeUtils();
104104
const tree = utils.list2Tree(items);

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "simple-tree-utils",
3-
"version": "3.1.1",
3+
"version": "3.1.2",
44
"description": "Simple Tree Utils is the library to convert and manipulate with tree-like structures.",
55
"keywords": [
66
"tree",

0 commit comments

Comments
 (0)