Skip to content

Commit fe1d310

Browse files
committed
new version
1 parent 4e76d8e commit fe1d310

File tree

4 files changed

+15
-9
lines changed

4 files changed

+15
-9
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ All notable changes to this project will be documented in this file.
66
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this
77
project adheres to [Semantic Versioning](http://semver.org/).
88

9+
## [0.15.6] - 2024-10-17
10+
### Fixed
11+
- Updated CMS to the latest version [#27].
12+
- Updated other dependencies.
13+
914
## [0.15.5] - 2024-07-21
1015
### Added
1116
- `target` option to the links in the menu [#23].
@@ -232,7 +237,9 @@ First version
232237
[#22]: https://github.com/lumeland/theme-simple-blog/issues/22
233238
[#23]: https://github.com/lumeland/theme-simple-blog/issues/23
234239
[#24]: https://github.com/lumeland/theme-simple-blog/issues/24
240+
[#27]: https://github.com/lumeland/theme-simple-blog/issues/27
235241

242+
[0.15.6]: https://github.com/lumeland/theme-simple-blog/compare/v0.15.5...v0.15.6
236243
[0.15.5]: https://github.com/lumeland/theme-simple-blog/compare/v0.15.4...v0.15.5
237244
[0.15.4]: https://github.com/lumeland/theme-simple-blog/compare/v0.15.3...v0.15.4
238245
[0.15.3]: https://github.com/lumeland/theme-simple-blog/compare/v0.15.2...v0.15.3

_cms.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,7 @@ cms.collection(
9999
name: "tags",
100100
type: "list",
101101
label: "Tags",
102-
init(field) {
103-
const { data } = field.cmsContent;
102+
init(field, { data }) {
104103
field.options = data.site?.search.values("tags");
105104
},
106105
},

deno.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"imports": {
3-
"lume/": "https://deno.land/x/lume@v2.2.2/",
4-
"lume/cms/": "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.5.2/"
3+
"lume/": "https://deno.land/x/lume@v2.3.3/",
4+
"lume/cms/": "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.7.0/"
55
},
66
"tasks": {
77
"lume": "echo \"import 'lume/cli.ts'\" | deno run -A -",
88
"build": "deno task lume",
99
"serve": "deno task lume -s",
10-
"update-deps": "deno run -A --quiet 'https://deno.land/x/[email protected].4/cli.ts' update plugins.ts deno.json"
10+
"update-deps": "deno run -A --quiet 'https://deno.land/x/[email protected].8/cli.ts' update plugins.ts deno.json"
1111
},
1212
"compilerOptions": {
1313
"types": [

plugins.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ import sitemap from "lume/plugins/sitemap.ts";
1111
import feed, { Options as FeedOptions } from "lume/plugins/feed.ts";
1212
import readingInfo from "lume/plugins/reading_info.ts";
1313
import { merge } from "lume/core/utils/object.ts";
14-
import toc from "https://deno.land/x/[email protected].0/toc.ts";
15-
import image from "https://deno.land/x/[email protected].0/image.ts";
16-
import footnotes from "https://deno.land/x/[email protected].0/footnotes.ts";
17-
import { alert } from "npm:@mdit/plugin-alert@0.12.0";
14+
import toc from "https://deno.land/x/[email protected].1/toc.ts";
15+
import image from "https://deno.land/x/[email protected].1/image.ts";
16+
import footnotes from "https://deno.land/x/[email protected].1/footnotes.ts";
17+
import { alert } from "npm:@mdit/plugin-alert@0.13.1";
1818

1919
import "lume/types.ts";
2020

0 commit comments

Comments
 (0)