From bfb3dcc89137ceb2081600586fdb45c79785ccec Mon Sep 17 00:00:00 2001 From: Oscar Otero Date: Mon, 9 Dec 2024 16:41:16 +0100 Subject: [PATCH] new version --- CHANGELOG.md | 8 +++++--- _scripts/build_npm.ts | 2 +- bench/bench.ts | 2 +- deps.ts | 2 +- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5fa03e0..4dfd593 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -## [1.12.13] - Unreleased +## [1.12.13] - 2024-12-09 ### Fixed -- Improved errors [#88] +- Improved errors [#88]. +- Moved error classes to a different module [#89]. - Improved the code of iterator with an array. ## [1.12.12] - 2024-11-19 @@ -276,8 +277,9 @@ First version [#74]: https://github.com/oscarotero/vento/issues/74 [#83]: https://github.com/oscarotero/vento/issues/83 [#88]: https://github.com/oscarotero/vento/issues/88 +[#89]: https://github.com/oscarotero/vento/issues/89 -[1.12.13]: https://github.com/oscarotero/vento/compare/v1.12.12...HEAD +[1.12.13]: https://github.com/oscarotero/vento/compare/v1.12.12...v1.12.13 [1.12.12]: https://github.com/oscarotero/vento/compare/v1.12.11...v1.12.12 [1.12.11]: https://github.com/oscarotero/vento/compare/v1.12.10...v1.12.11 [1.12.10]: https://github.com/oscarotero/vento/compare/v0.12.9...v1.12.10 diff --git a/_scripts/build_npm.ts b/_scripts/build_npm.ts index f45dd00..ec79550 100644 --- a/_scripts/build_npm.ts +++ b/_scripts/build_npm.ts @@ -1,5 +1,5 @@ import { build } from "jsr:@deno/dnt@0.41.2"; -import { emptyDir } from "jsr:@std/fs@1.0.5/empty-dir"; +import { emptyDir } from "jsr:@std/fs@1.0.6/empty-dir"; await emptyDir("./_npm"); diff --git a/bench/bench.ts b/bench/bench.ts index 09abbd7..0214a70 100644 --- a/bench/bench.ts +++ b/bench/bench.ts @@ -1,6 +1,6 @@ import vento from "../mod.ts"; import nunjucks from "npm:nunjucks@3.2.4"; -import { Liquid } from "npm:liquidjs@10.18.0"; +import { Liquid } from "npm:liquidjs@10.19.0"; import { Eta } from "https://deno.land/x/eta@v3.5.0/src/index.ts"; const env = vento({ diff --git a/deps.ts b/deps.ts index 8120f72..5b86a25 100644 --- a/deps.ts +++ b/deps.ts @@ -1,4 +1,4 @@ -export * as path from "https://deno.land/std@0.224.0/path/mod.ts"; +export * as path from "jsr:@std/path@1.0.8"; export * as html from "jsr:@std/html@1.0.3"; export * as astring from "jsr:@davidbonnet/astring@1.8.6";