Skip to content

Commit

Permalink
updated deps
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarotero committed Dec 10, 2023
1 parent 97454dd commit e63f0ff
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/),
and this project try to adheres to [Semantic Versioning](https://semver.org/).
Go to the `v1` branch to see the changelog of Lume 1.

## [2.0.1] - Unreleased
## [2.0.1] - 2023-12-10
### Added
- `mdx` plugin: New `rehypeOptions` option [#517]

Expand All @@ -16,6 +16,7 @@ Go to the `v1` branch to see the changelog of Lume 1.
- Type of `Lume.Data.results`.
- Improved log messages of empty and ondemand pages [#525].
- `picture` plugin using the wrong attribute name [#526].
- Updated deps: `markdown-it`, `preact`, `terser`, `esbuild`.

## [2.0.0] - 2023-12-08
### Added
Expand Down Expand Up @@ -184,5 +185,5 @@ Go to the `v1` branch to see the changelog of Lume 1.
[#525]: https://github.com/lumeland/lume/issues/525
[#526]: https://github.com/lumeland/lume/issues/526

[2.0.1]: https://github.com/lumeland/lume/compare/v2.0.0...HEAD
[2.0.1]: https://github.com/lumeland/lume/compare/v2.0.0...v2.0.1
[2.0.0]: https://github.com/lumeland/lume/releases/tag/v2.0.0
2 changes: 1 addition & 1 deletion deps/esbuild.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/x/[email protected].8/mod.js";
export * from "https://deno.land/x/[email protected].9/mod.js";
2 changes: 1 addition & 1 deletion deps/markdown_it.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export { default as markdownIt } from "npm:markdown-it@13.0.2";
export { default as markdownIt } from "npm:markdown-it@14.0.0";
export { default as markdownItAttrs } from "npm:[email protected]";
export { default as markdownItDeflist } from "npm:[email protected]";

Expand Down
6 changes: 3 additions & 3 deletions deps/preact.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export * as preact from "npm:[email protected].2";
export * as hooks from "npm:[email protected].2/hooks";
export * as preact from "npm:[email protected].3";
export * as hooks from "npm:[email protected].3/hooks";
export { renderToString } from "npm:[email protected]";
export const specifier = "npm:[email protected].2";
export const specifier = "npm:[email protected].3";
4 changes: 2 additions & 2 deletions deps/terser.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export { minify } from "npm:terser@5.25.0";
export type { MinifyOptions } from "npm:terser@5.25.0";
export { minify } from "npm:terser@5.26.0";
export type { MinifyOptions } from "npm:terser@5.26.0";

0 comments on commit e63f0ff

Please sign in to comment.