From f8b67aa9b9a715a9989258fc662053456f9046bb Mon Sep 17 00:00:00 2001 From: Yoshiya Hinosawa Date: Fri, 23 Aug 2024 11:34:59 +0900 Subject: [PATCH] chore: bump to v0.3.0 --- .bmp.yml | 2 +- README.md | 2 +- deno.json | 2 +- mod.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bmp.yml b/.bmp.yml index 21bb178..3d064ec 100644 --- a/.bmp.yml +++ b/.bmp.yml @@ -1,4 +1,4 @@ -version: 0.2.2 +version: 0.3.0 commit: 'chore: bump to v%.%.%' files: README.md: Cell v%.%.% diff --git a/README.md b/README.md index c71da3a..e89841d 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ cell -# Cell v0.2.2 +# Cell v0.3.0 > frontend tool for local event handlers and signals diff --git a/deno.json b/deno.json index 19d767c..255b46b 100644 --- a/deno.json +++ b/deno.json @@ -1,6 +1,6 @@ { "name": "@kt3k/cell", - "version": "0.2.2", + "version": "0.3.0", "exports": { ".": "./mod.ts" }, diff --git a/mod.ts b/mod.ts index c2fef99..c41bc71 100644 --- a/mod.ts +++ b/mod.ts @@ -1,4 +1,4 @@ -/*! Cell v0.2.2 | Copyright 2024 Yoshiya Hinosawa and Capsule contributors | MIT license */ +/*! Cell v0.3.0 | Copyright 2024 Yoshiya Hinosawa and Capsule contributors | MIT license */ import { documentReady, logEvent } from "./util.ts"; export { signal } from "@kt3k/signal";