diff --git a/LICENSE b/LICENSE index 0c07068..39ac92b 100644 --- a/LICENSE +++ b/LICENSE @@ -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. diff --git a/elm-package.json b/elm-package.json index c10e5e4..71912a0 100644 --- a/elm-package.json +++ b/elm-package.json @@ -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", @@ -33,4 +33,4 @@ "elm-lang/core": "4.0.0 <= v < 5.0.0" }, "elm-version": "0.17.0 <= v < 0.18.0" -} +} \ No newline at end of file diff --git a/src/Date/Extra/Config/Configs.elm b/src/Date/Extra/Config/Configs.elm index fa4568d..753a651 100644 --- a/src/Date/Extra/Config/Configs.elm +++ b/src/Date/Extra/Config/Configs.elm @@ -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. -} @@ -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) ] diff --git a/src/Date/Extra/TimeUnit.elm b/src/Date/Extra/TimeUnit.elm index 9c58088..67fee2a 100644 --- a/src/Date/Extra/TimeUnit.elm +++ b/src/Date/Extra/TimeUnit.elm @@ -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