Skip to content

Commit

Permalink
fix(Project): update changlog and buildscipt for a bugfix version(v0.…
Browse files Browse the repository at this point in the history
…1.2-SNAPSHOT)
  • Loading branch information
zyzz19951230 committed Aug 15, 2021
1 parent 3af58b1 commit 2f1c740
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = "com.github.zimolab"
version = "0.1.1-SNAPSHOT"
version = "0.1.2-SNAPSHOT"

val groupIdDef = group.toString()
val versionIdDef = version.toString()
Expand Down
14 changes: 14 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,3 +130,17 @@ jsArray.forEach{ index, value->
- (java) include(null) <=> (js) includes(null) && indexOf(null) || includes(undefined)
- (java) indexOf(null) <=> (js) {let __tmp=indexOf(null);__tmp!=-1? __tmp : indexOf(undefined)}
- (java) lastIndexOf(null) <=> (js) {let __tmp=lastIndexOf(null);__tmp!=-1? __tmp : lastIndexOf(undefined)}

## v0.1.2-SNAPSHOT(2021/8/15)
### Bug Fixes
- 解决了一个小bug,将findIndex()函数参数泛型类型中忘记添加的?补上了

> 之前:fun findIndex(callback: JsArrayIteratorCallback<T, Boolean>): Int
> 之后:fun findIndex(callback: JsArrayIteratorCallback<T?, Boolean>): Int

### Features
-

### Breaking Changes
- findIndex()函数参数类型由**JsArrayIteratorCallback<T, Boolean>** 改为**JsArrayIteratorCallback<T?, Boolean>**, 这是编码上的一处遗漏,现在已解决。

0 comments on commit 2f1c740

Please sign in to comment.