From 682d8a85983160662722b47930e7cf52eb9f12dc Mon Sep 17 00:00:00 2001 From: Joe Pea Date: Wed, 25 Sep 2024 15:20:21 -0700 Subject: [PATCH] v0.4.0 --- dist/index.d.ts | 2 +- dist/index.js | 2 +- dist/index.js.map | 2 +- package.json | 2 +- src/index.ts | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/dist/index.d.ts b/dist/index.d.ts index c44fc45..4090fb7 100644 --- a/dist/index.d.ts +++ b/dist/index.d.ts @@ -2,5 +2,5 @@ export * from './decorators/index.js'; export * from './effects/index.js'; export * from './mixins/index.js'; export * from './signals/index.js'; -export declare const version = "0.3.9"; +export declare const version = "0.4.0"; //# sourceMappingURL=index.d.ts.map \ No newline at end of file diff --git a/dist/index.js b/dist/index.js index 18faf60..b54c222 100644 --- a/dist/index.js +++ b/dist/index.js @@ -2,5 +2,5 @@ export * from './decorators/index.js'; export * from './effects/index.js'; export * from './mixins/index.js'; export * from './signals/index.js'; -export const version = '0.3.9'; +export const version = '0.4.0'; //# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/dist/index.js.map b/dist/index.js.map index 6ba7ff3..e9f5fc7 100644 --- a/dist/index.js.map +++ b/dist/index.js.map @@ -1 +1 @@ -{"version":3,"file":"index.js","names":["version"],"sources":["../src/index.ts"],"sourcesContent":["export * from './decorators/index.js'\nexport * from './effects/index.js'\nexport * from './mixins/index.js'\nexport * from './signals/index.js'\n\nexport const version = '0.3.9'\n"],"mappings":"AAAA,cAAc,uBAAuB;AACrC,cAAc,oBAAoB;AAClC,cAAc,mBAAmB;AACjC,cAAc,oBAAoB;AAElC,OAAO,MAAMA,OAAO,GAAG,OAAO","ignoreList":[]} \ No newline at end of file +{"version":3,"file":"index.js","names":["version"],"sources":["../src/index.ts"],"sourcesContent":["export * from './decorators/index.js'\nexport * from './effects/index.js'\nexport * from './mixins/index.js'\nexport * from './signals/index.js'\n\nexport const version = '0.4.0'\n"],"mappings":"AAAA,cAAc,uBAAuB;AACrC,cAAc,oBAAoB;AAClC,cAAc,mBAAmB;AACjC,cAAc,oBAAoB;AAElC,OAAO,MAAMA,OAAO,GAAG,OAAO","ignoreList":[]} \ No newline at end of file diff --git a/package.json b/package.json index a0d7d3c..ce285b5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "classy-solid", - "version": "0.3.9", + "version": "0.4.0", "description": "Solid.js reactivity patterns for classes, and class components.", "info": "The `classy-solid` package gives you a `@signal` decorator to make reactive class properties, an `@component` decorator to use classes as Solid components, and some other APIs to simplify usage of reactive patterns in classes. It is still early, more features and changes to come!", "author": "Joe Pea ", diff --git a/src/index.ts b/src/index.ts index cee6c89..686d2b9 100644 --- a/src/index.ts +++ b/src/index.ts @@ -3,4 +3,4 @@ export * from './effects/index.js' export * from './mixins/index.js' export * from './signals/index.js' -export const version = '0.3.9' +export const version = '0.4.0'