Skip to content
This repository was archived by the owner on May 30, 2024. It is now read-only.

Commit 1ca8fbe

Browse files
author
LaunchDarklyReleaseBot
committed
Releasing version 2.1.0
1 parent f2848bf commit 1ca8fbe

File tree

15 files changed

+2670
-1
lines changed

15 files changed

+2670
-1
lines changed

CHANGELOG.md

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

33
All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).
44

5+
## [2.1.0] - 2022-12-07
6+
### Added:
7+
- Added support for `launchdarkly-node-server-sdk` `7.0.0` and greater.
8+
59
## [2.0.0] - 2021-07-22
610
### Added:
711
- Added support for Big Segments. An Early Access Program for creating and syncing Big Segments from customer data platforms is available to enterprise customers.

docs/build/html/.nojekyll

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false.

docs/build/html/assets/highlight.css

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
:root {
2+
--light-hl-0: #0000FF;
3+
--dark-hl-0: #569CD6;
4+
--light-hl-1: #000000;
5+
--dark-hl-1: #D4D4D4;
6+
--light-hl-2: #0070C1;
7+
--dark-hl-2: #4FC1FF;
8+
--light-hl-3: #795E26;
9+
--dark-hl-3: #DCDCAA;
10+
--light-hl-4: #001080;
11+
--dark-hl-4: #9CDCFE;
12+
--light-hl-5: #A31515;
13+
--dark-hl-5: #CE9178;
14+
--light-hl-6: #098658;
15+
--dark-hl-6: #B5CEA8;
16+
--light-code-background: #F5F5F5;
17+
--dark-code-background: #1E1E1E;
18+
}
19+
20+
@media (prefers-color-scheme: light) { :root {
21+
--hl-0: var(--light-hl-0);
22+
--hl-1: var(--light-hl-1);
23+
--hl-2: var(--light-hl-2);
24+
--hl-3: var(--light-hl-3);
25+
--hl-4: var(--light-hl-4);
26+
--hl-5: var(--light-hl-5);
27+
--hl-6: var(--light-hl-6);
28+
--code-background: var(--light-code-background);
29+
} }
30+
31+
@media (prefers-color-scheme: dark) { :root {
32+
--hl-0: var(--dark-hl-0);
33+
--hl-1: var(--dark-hl-1);
34+
--hl-2: var(--dark-hl-2);
35+
--hl-3: var(--dark-hl-3);
36+
--hl-4: var(--dark-hl-4);
37+
--hl-5: var(--dark-hl-5);
38+
--hl-6: var(--dark-hl-6);
39+
--code-background: var(--dark-code-background);
40+
} }
41+
42+
body.light {
43+
--hl-0: var(--light-hl-0);
44+
--hl-1: var(--light-hl-1);
45+
--hl-2: var(--light-hl-2);
46+
--hl-3: var(--light-hl-3);
47+
--hl-4: var(--light-hl-4);
48+
--hl-5: var(--light-hl-5);
49+
--hl-6: var(--light-hl-6);
50+
--code-background: var(--light-code-background);
51+
}
52+
53+
body.dark {
54+
--hl-0: var(--dark-hl-0);
55+
--hl-1: var(--dark-hl-1);
56+
--hl-2: var(--dark-hl-2);
57+
--hl-3: var(--dark-hl-3);
58+
--hl-4: var(--dark-hl-4);
59+
--hl-5: var(--dark-hl-5);
60+
--hl-6: var(--dark-hl-6);
61+
--code-background: var(--dark-code-background);
62+
}
63+
64+
.hl-0 { color: var(--hl-0); }
65+
.hl-1 { color: var(--hl-1); }
66+
.hl-2 { color: var(--hl-2); }
67+
.hl-3 { color: var(--hl-3); }
68+
.hl-4 { color: var(--hl-4); }
69+
.hl-5 { color: var(--hl-5); }
70+
.hl-6 { color: var(--hl-6); }
71+
pre, code { background: var(--code-background); }

0 commit comments

Comments
 (0)