Skip to content

Commit

Permalink
Version 2.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jguerinet committed Jul 25, 2017
1 parent 8411705 commit 3e3bc39
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## Version 2.0.8 (2017-07-25)
* `date`:
* Added missing static annotation

## Version 2.0.7 (2017-07-25)
* `date`:
* Switched some of the formatting Strings to take in `TemporalAccessor`s instead of `Temporal`s
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ object DateFormat {
* @return Localized full date String (ex: Monday, January 1, 2000) of the given [temporal],
* null if the [temporal] was null
*/
@JvmStatic
fun getFullDateString(temporal: TemporalAccessor?): String? {
return if (temporal == null) null else fullDateFormatter.format(temporal)
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
# org.gradle.parallel=true

# Project properties
suitcase_version=2.0.7
suitcase_version=2.0.8
group=com.guerinet

# Android specific properties
Expand Down

0 comments on commit 3e3bc39

Please sign in to comment.