Skip to content
This repository was archived by the owner on Nov 22, 2023. It is now read-only.

Commit b55d435

Browse files
committed
v0.10.0
1 parent 03c772f commit b55d435

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

dist/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ declare type AnyClassWithReactiveProps = (new (...args: any[]) => object) & {
2828
export declare function reactify<T>(obj: T, props: (keyof T)[]): typeof obj;
2929
export declare function reactify<C extends AnyClass>(obj: InstanceType<C>, ctor: C): typeof obj;
3030
export declare function circular<Type>(first: VariableGetter<Type>, setFirst: (v: Type) => void, second: VariableGetter<Type>, setSecond: (v: Type) => void): StopFunction;
31-
export declare const version = "0.9.0";
31+
export declare const version = "0.10.0";
3232
export {};
3333
//# sourceMappingURL=index.d.ts.map

dist/index.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lume/variable",
3-
"version": "0.9.0",
3+
"version": "0.10.0",
44
"description": "Create reactive variables and react their changes.",
55
"author": "Joe Pea <joe@trusktr.io>",
66
"license": "MIT",

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,4 +363,4 @@ export function circular<Type>(
363363
}
364364
}
365365

366-
export const version = '0.9.0'
366+
export const version = '0.10.0'

0 commit comments

Comments
 (0)