Skip to content

Commit

Permalink
chore(release): 7.0.0 [skip ci]
Browse files Browse the repository at this point in the history
## [7.0.0](v6.0.10...v7.0.0) (2023-10-22)

### ⚠ BREAKING CHANGES

* drop Node `<18.18.2` support
* remove legacy API

### Performance Improvements

* drop Node `<18.18.2` support ([c6b9a4e](c6b9a4e))

### Code Refactoring

* remove legacy API ([e5e9a42](e5e9a42))
  • Loading branch information
semantic-release-bot authored and vansergen committed Oct 22, 2023
1 parent e7f7852 commit aa05e1e
Show file tree
Hide file tree
Showing 247 changed files with 25,062 additions and 140,384 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## [7.0.0](https://github.com/vansergen/poloniex-node-api/compare/v6.0.10...v7.0.0) (2023-10-22)

### ⚠ BREAKING CHANGES

- drop Node `<18.18.2` support
- remove legacy API

### Performance Improvements

- drop Node `<18.18.2` support ([c6b9a4e](https://github.com/vansergen/poloniex-node-api/commit/c6b9a4e270b85ab4491e00ffc07c96a8a8c9db09))

### Code Refactoring

- remove legacy API ([e5e9a42](https://github.com/vansergen/poloniex-node-api/commit/e5e9a42313e989e5068bf5928850c268cfd1ea2c))

## [6.0.10](https://github.com/vansergen/poloniex-node-api/compare/v6.0.9...v6.0.10) (2023-09-27)

### Dependencies
Expand Down
9 changes: 8 additions & 1 deletion docs/assets/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -1807,7 +1807,14 @@
if (!r.index || !r.data) return;
e.textContent = "";
let i = n.value.trim(),
s = i ? r.index.search(`*${i}*`) : [];
s;
if (i) {
let o = i
.split(" ")
.map((a) => (a.length ? `*${a}*` : ""))
.join(" ");
s = r.index.search(o);
} else s = [];
for (let o = 0; o < s.length; o++) {
let a = s[o],
l = r.data.rows[Number(a.ref)],
Expand Down
2 changes: 1 addition & 1 deletion docs/assets/navigation.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/assets/search.js

Large diffs are not rendered by default.

Loading

0 comments on commit aa05e1e

Please sign in to comment.