From 7209c4e0c8a8e15627da71ce26252d0ccca8cd81 Mon Sep 17 00:00:00 2001 From: James Edmonds Date: Fri, 28 Jul 2023 08:09:56 +0000 Subject: [PATCH] v1.3.10 --- README.md | 2 +- version.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9a2663c..2b7ae46 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ You can build your own bespoke build system on top of Mesozoic, which [Ultra.js](https://ultrajs.dev) is currently doing. ```ts -import { Builder, ContextBuilder } from "https://deno.land/x/mesozoic@v1.3.9/mod.ts"; +import { Builder, ContextBuilder } from "https://deno.land/x/mesozoic@v1.3.10/mod.ts"; const context = new ContextBuilder() /** diff --git a/version.ts b/version.ts index 3beda9b..8e18720 100644 --- a/version.ts +++ b/version.ts @@ -1,4 +1,4 @@ -export const VERSION = "1.3.9"; +export const VERSION = "1.3.10"; export const VERSION_REGEX = /\/\/deno\.land\/x\/mesozoic@v[\w\.\-]+\//; /** `prepublish` will be invoked before publish, return `false` to prevent the publish. */