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

Commit

Permalink
v0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
trusktr committed Oct 24, 2023
1 parent 24bb6a7 commit c211474
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ declare type AnyClassWithReactiveProps = (new (...args: any[]) => object) & {
export declare function reactify<T>(obj: T, props: (keyof T)[]): typeof obj;
export declare function reactify<C extends AnyClass>(obj: InstanceType<C>, ctor: C): typeof obj;
export declare function circular<Type>(first: VariableGetter<Type>, setFirst: (v: Type) => void, second: VariableGetter<Type>, setSecond: (v: Type) => void): StopFunction;
export declare const version = "0.10.0";
export declare const version = "0.10.1";
export {};
//# sourceMappingURL=index.d.ts.map
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lume/variable",
"version": "0.10.0",
"version": "0.10.1",
"description": "Create reactive variables and react their changes.",
"author": "Joe Pea <[email protected]>",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -363,4 +363,4 @@ export function circular<Type>(
}
}

export const version = '0.10.0'
export const version = '0.10.1'

0 comments on commit c211474

Please sign in to comment.