From 832f3f66ceb532f4ae426102c48f6cd586b020ff Mon Sep 17 00:00:00 2001 From: Joe Pea Date: Tue, 24 Oct 2023 01:09:13 -0700 Subject: [PATCH] v5.0.0 --- dist/index.d.ts | 2 +- dist/index.js | 2 +- package.json | 2 +- src/index.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dist/index.d.ts b/dist/index.d.ts index 0938937..891e9d6 100644 --- a/dist/index.d.ts +++ b/dist/index.d.ts @@ -1,5 +1,5 @@ export * from './BehaviorMap.js'; export * from './BehaviorRegistry.js'; export * from './HasAttribute.js'; -export declare const version = "4.0.0"; +export declare const version = "5.0.0"; //# sourceMappingURL=index.d.ts.map \ No newline at end of file diff --git a/dist/index.js b/dist/index.js index c522987..fd72a8b 100644 --- a/dist/index.js +++ b/dist/index.js @@ -1,5 +1,5 @@ export * from './BehaviorMap.js'; export * from './BehaviorRegistry.js'; export * from './HasAttribute.js'; -export const version = '4.0.0'; +export const version = '5.0.0'; //# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/package.json b/package.json index 3bfc527..f9167e8 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "element-behaviors", "description": "An entity-component system for HTML elements.", - "version": "4.0.0", + "version": "5.0.0", "license": "LGPL-3.0", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/src/index.ts b/src/index.ts index a278954..b096d0f 100644 --- a/src/index.ts +++ b/src/index.ts @@ -8,4 +8,4 @@ export * from './HasAttribute.js' // Leave this last line alone, it gets automatically updated when publishing a // new version of this package. -export const version = '4.0.0' +export const version = '5.0.0'