Skip to content

Commit

Permalink
Release 7.2.0 with finnish locale
Browse files Browse the repository at this point in the history
doc(LICENSE): correct
doc(TimeUnit): correct
feat(Configs): add finnish
  • Loading branch information
rluiten committed Jul 8, 2016
1 parent d0e0a2f commit 0f1e5cf
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ modification, are permitted provided that the following conditions are met:
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.

* Neither the name of elm-date-extratemp nor the names of its
* Neither the name of elm-date-extra nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.

Expand Down
4 changes: 2 additions & 2 deletions elm-package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "7.1.0",
"version": "7.2.0",
"summary": "Date Extra library add/subtract/diff/format etc dates.",
"repository": "https://github.com/rluiten/elm-date-extra.git",
"license": "BSD3",
Expand Down Expand Up @@ -33,4 +33,4 @@
"elm-lang/core": "4.0.0 <= v < 5.0.0"
},
"elm-version": "0.17.0 <= v < 0.18.0"
}
}
2 changes: 2 additions & 0 deletions src/Date/Extra/Config/Configs.elm
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import Date.Extra.Config.Config_en_au as Config_en_au
import Date.Extra.Config.Config_en_gb as Config_en_gb
import Date.Extra.Config.Config_fr_fr as Config_fr_fr
import Date.Extra.Config.Config_pl_pl as Config_pl_pl
import Date.Extra.Config.Config_fi_fi as Config_fi_fi


{-| Built in configurations. -}
Expand All @@ -32,6 +33,7 @@ configs =
, ("en_gb", Config_en_gb.config)
, ("fr_fr", Config_fr_fr.config)
, ("pl_pl", Config_pl_pl.config)
, ("fi_fi", Config_fi_fi.config)
]


Expand Down
2 changes: 1 addition & 1 deletion src/Date/Extra/TimeUnit.elm
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ startOfTimeYear date =
{-| Return a date created by increasing to maximum value all values below
a given TimeUnit granularity.
This ceils in local time zone values, as the date element parts
This modifies in local time zone values, as the date element parts
are pulled straight from the local time zone date values.
-}
endOfTime : TimeUnit -> Date -> Date
Expand Down

0 comments on commit 0f1e5cf

Please sign in to comment.