Skip to content

Commit

Permalink
1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bripkens committed Sep 10, 2018
1 parent 9c223e2 commit 17f0ad0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,8 @@
# Changelog

## 1.8.0
- Add `unshift` to `ListForm`.

## 1.7.0
- Expose number of items of list forms.

Expand Down
1 change: 1 addition & 0 deletions formalistic.d.ts
Expand Up @@ -91,6 +91,7 @@ export interface ListForm {

push(item: Item): ListForm;
set(index: number, item: Item): ListForm;
unshift(item: Item): ListForm;
remove(index: number): ListForm;
get(index: number): Item | undefined;
updateIn(path: string[], updater: ((item: Item) => Item)): ListForm;
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "formalistic",
"version": "1.7.0",
"version": "1.8.0",
"description": "Handle form data and form validation",
"main": "lib/index.js",
"typescript": {
Expand Down

0 comments on commit 17f0ad0

Please sign in to comment.