Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
adibfara committed Jan 24, 2019
1 parent faae11a commit 88c28dd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
## [1.2.1]
### Changed
- change the name of `just` to `liveDataOf`, since just was too broad.
- change the name of `empty()` to `emptyLiveData()`, since empty was too broad.
- [_BREAKING_] change the name of `just(value)` to `liveDataOf(value)`, since just was too broad.
- [_BREAKING_] change the name of `from { }` to `liveDataOf { }`, since just was too broad.
- [_BREAKING_] change the name of `empty()` to `emptyLiveData()`, since empty was too broad.

## [1.2.0]
### Added
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Usage
val liveData = liveDataOf {computePI()}
```

- `empty` : Creates an empty LiveData.
- `emptyLiveData` : Creates an empty LiveData
```kotlin
val liveData = emptyLiveData<Int>()
```
Expand Down

0 comments on commit 88c28dd

Please sign in to comment.