Skip to content

Commit 24170e2

Browse files
chore(release): 10.0.0 [skip ci]
# [10.0.0](v9.0.8...v10.0.0) (2024-11-15) ### Features * **centralnic reseller node sdk:** Introducing CentralNic Reseller Node SDK API Connector ([d3c5fb1](d3c5fb1)) ### BREAKING CHANGES * **centralnic reseller node sdk:** This release deprecates the Hexonet Node SDK and introduces the CentralNic Reseller Node SDK. - Note: To continue using the Hexonet SDK, please install version 9.0.8 or earlier.
1 parent 1320982 commit 24170e2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+322
-241
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# [10.0.0](https://github.com/centralnicgroup-opensource/rtldev-middleware-node-sdk/compare/v9.0.8...v10.0.0) (2024-11-15)
2+
3+
4+
### Features
5+
6+
* **centralnic reseller node sdk:** Introducing CentralNic Reseller Node SDK API Connector ([d3c5fb1](https://github.com/centralnicgroup-opensource/rtldev-middleware-node-sdk/commit/d3c5fb14286cb1f6e00c776b331200b36d077238))
7+
8+
9+
### BREAKING CHANGES
10+
11+
* **centralnic reseller node sdk:** This release deprecates the Hexonet Node SDK and introduces the CentralNic Reseller Node SDK.
12+
- Note: To continue using the Hexonet SDK, please install version 9.0.8 or earlier.
13+
114
## [9.0.8](https://github.com/centralnicgroup-opensource/rtldev-middleware-node-sdk/compare/v9.0.7...v9.0.8) (2024-07-25)
215

316
### Bug Fixes

docs/assets/highlight.css

+21
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,43 @@
11
:root {
2+
--light-hl-0: #795E26;
3+
--dark-hl-0: #DCDCAA;
4+
--light-hl-1: #000000;
5+
--dark-hl-1: #D4D4D4;
6+
--light-hl-2: #A31515;
7+
--dark-hl-2: #CE9178;
28
--light-code-background: #FFFFFF;
39
--dark-code-background: #1E1E1E;
410
}
511

612
@media (prefers-color-scheme: light) { :root {
13+
--hl-0: var(--light-hl-0);
14+
--hl-1: var(--light-hl-1);
15+
--hl-2: var(--light-hl-2);
716
--code-background: var(--light-code-background);
817
} }
918

1019
@media (prefers-color-scheme: dark) { :root {
20+
--hl-0: var(--dark-hl-0);
21+
--hl-1: var(--dark-hl-1);
22+
--hl-2: var(--dark-hl-2);
1123
--code-background: var(--dark-code-background);
1224
} }
1325

1426
:root[data-theme='light'] {
27+
--hl-0: var(--light-hl-0);
28+
--hl-1: var(--light-hl-1);
29+
--hl-2: var(--light-hl-2);
1530
--code-background: var(--light-code-background);
1631
}
1732

1833
:root[data-theme='dark'] {
34+
--hl-0: var(--dark-hl-0);
35+
--hl-1: var(--dark-hl-1);
36+
--hl-2: var(--dark-hl-2);
1937
--code-background: var(--dark-code-background);
2038
}
2139

40+
.hl-0 { color: var(--hl-0); }
41+
.hl-1 { color: var(--hl-1); }
42+
.hl-2 { color: var(--hl-2); }
2243
pre, code { background: var(--code-background); }

docs/assets/icons.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/assets/icons.svg

+1-1
Loading

docs/assets/main.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/assets/navigation.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/assets/search.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)