Skip to content

Commit

Permalink
chore(release): 1.1.6 [skip ci]
Browse files Browse the repository at this point in the history
## [1.1.6](v1.1.5...v1.1.6) (2023-02-12)

### Performance Improvements

* **BindenResponse:** allow to pass a custom `Stats` to `.sendFile()` ([c3a9a8e](c3a9a8e))
* **BindenResponse:** allow to pass a custom `stringify` function to `.json()` ([e90a580](e90a580))

### Dependencies

* bump `binden/logger` from `1.0.5` to `1.0.6` ([9333718](9333718))
  • Loading branch information
semantic-release-bot authored and vansergen committed Feb 12, 2023
1 parent cb6c573 commit 7eaa45f
Show file tree
Hide file tree
Showing 12 changed files with 975 additions and 586 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## [1.1.6](https://github.com/binden-js/binden/compare/v1.1.5...v1.1.6) (2023-02-12)

### Performance Improvements

- **BindenResponse:** allow to pass a custom `Stats` to `.sendFile()` ([c3a9a8e](https://github.com/binden-js/binden/commit/c3a9a8e042e3c6937751bb2f8a7b3d67ceb6e361))
- **BindenResponse:** allow to pass a custom `stringify` function to `.json()` ([e90a580](https://github.com/binden-js/binden/commit/e90a5803ea5175e44013da667b555b1d8fe07f24))

### Dependencies

- bump `binden/logger` from `1.0.5` to `1.0.6` ([9333718](https://github.com/binden-js/binden/commit/93337181f98f7367d574c1889e09481022d8849e))

## [1.1.5](https://github.com/binden-js/binden/compare/v1.1.4...v1.1.5) (2022-11-08)

### Dependencies
Expand Down
33 changes: 21 additions & 12 deletions docs/assets/highlight.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
:root {
--light-hl-0: #000000;
--dark-hl-0: #d4d4d4;
--light-hl-1: #af00db;
--dark-hl-1: #c586c0;
--light-hl-2: #001080;
--dark-hl-2: #9cdcfe;
--light-hl-3: #a31515;
--dark-hl-3: #ce9178;
--light-hl-1: #a31515;
--dark-hl-1: #ce9178;
--light-hl-2: #af00db;
--dark-hl-2: #c586c0;
--light-hl-3: #001080;
--dark-hl-3: #9cdcfe;
--light-hl-4: #0000ff;
--dark-hl-4: #569cd6;
--light-hl-5: #0070c1;
Expand All @@ -19,12 +19,14 @@
--dark-hl-8: #4ec9b0;
--light-hl-9: #008000;
--dark-hl-9: #6a9955;
--light-hl-10: #000000ff;
--dark-hl-10: #d4d4d4;
--light-hl-11: #ee0000;
--dark-hl-11: #d7ba7d;
--light-hl-12: #811f3f;
--dark-hl-12: #d16969;
--light-hl-10: #800000;
--dark-hl-10: #569cd6;
--light-hl-11: #000000ff;
--dark-hl-11: #d4d4d4;
--light-hl-12: #ee0000;
--dark-hl-12: #d7ba7d;
--light-hl-13: #811f3f;
--dark-hl-13: #d16969;
--light-code-background: #ffffff;
--dark-code-background: #1e1e1e;
}
Expand All @@ -44,6 +46,7 @@
--hl-10: var(--light-hl-10);
--hl-11: var(--light-hl-11);
--hl-12: var(--light-hl-12);
--hl-13: var(--light-hl-13);
--code-background: var(--light-code-background);
}
}
Expand All @@ -63,6 +66,7 @@
--hl-10: var(--dark-hl-10);
--hl-11: var(--dark-hl-11);
--hl-12: var(--dark-hl-12);
--hl-13: var(--dark-hl-13);
--code-background: var(--dark-code-background);
}
}
Expand All @@ -81,6 +85,7 @@
--hl-10: var(--light-hl-10);
--hl-11: var(--light-hl-11);
--hl-12: var(--light-hl-12);
--hl-13: var(--light-hl-13);
--code-background: var(--light-code-background);
}

Expand All @@ -98,6 +103,7 @@
--hl-10: var(--dark-hl-10);
--hl-11: var(--dark-hl-11);
--hl-12: var(--dark-hl-12);
--hl-13: var(--dark-hl-13);
--code-background: var(--dark-code-background);
}

Expand Down Expand Up @@ -140,6 +146,9 @@
.hl-12 {
color: var(--hl-12);
}
.hl-13 {
color: var(--hl-13);
}
pre,
code {
background: var(--code-background);
Expand Down
Loading

0 comments on commit 7eaa45f

Please sign in to comment.