Skip to content

Commit

Permalink
new version
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarotero committed Dec 9, 2024
1 parent 89ca698 commit bfb3dcc
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion _scripts/build_npm.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { build } from "jsr:@deno/[email protected]";
import { emptyDir } from "jsr:@std/[email protected].5/empty-dir";
import { emptyDir } from "jsr:@std/[email protected].6/empty-dir";

await emptyDir("./_npm");

Expand Down
2 changes: 1 addition & 1 deletion bench/bench.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import vento from "../mod.ts";
import nunjucks from "npm:[email protected]";
import { Liquid } from "npm:liquidjs@10.18.0";
import { Liquid } from "npm:liquidjs@10.19.0";
import { Eta } from "https://deno.land/x/[email protected]/src/index.ts";

const env = vento({
Expand Down
2 changes: 1 addition & 1 deletion deps.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export * as path from "https://deno.land/std@0.224.0/path/mod.ts";
export * as path from "jsr:@std/[email protected]";
export * as html from "jsr:@std/[email protected]";

export * as astring from "jsr:@davidbonnet/[email protected]";
Expand Down

0 comments on commit bfb3dcc

Please sign in to comment.