Skip to content

Commit

Permalink
chore: release 4.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
fantasticsoul committed Jan 23, 2024
1 parent bc77ff4 commit d3a464f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "helux",
"version": "4.2.2",
"version": "4.2.4",
"description": "A reactive atomic state engine for React like.",
"keywords": [],
"author": {
Expand Down
2 changes: 1 addition & 1 deletion packages/helux-core/src/consts/user.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { VER as limuVer } from 'limu';

export const VER = '4.2.3';
export const VER = '4.2.4';

export const LIMU_VER = limuVer;

Expand Down
4 changes: 2 additions & 2 deletions packages/helux-core/src/types/api.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
|------------------------------------------------------------------------------------------------
| [email protected].3
| [email protected].4
| A state library core that integrates atom, signal, collection dep, derive and watch,
| it supports all react like frameworks ( including react 18 ).
|------------------------------------------------------------------------------------------------
Expand Down Expand Up @@ -68,7 +68,7 @@ import type {
} from './base';

export declare const cst: {
VER: '4.2.3';
VER: '4.2.4';
LIMU_VER: string;
EVENT_NAME: {
/** 共享状态创建时的事件 */
Expand Down
2 changes: 1 addition & 1 deletion packages/helux-core/src/types/base.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ export interface IMutateFnParams<T = SharedState, P extends Arr = Arr, E extends
input: P;
/** 只读状态 */
state: StateType<T>;
/** 草稿根状态,对与 atom 对象,根状态是未拆箱的值 */
/** 草稿根状态,对于 atom 对象,根状态是未拆箱的值 */
draftRoot: DraftRootType<T>;
extraBound: IBoundStateInfo<E>;
/**
Expand Down

0 comments on commit d3a464f

Please sign in to comment.