diff --git a/.gitignore b/.gitignore index e9d9cf7..d1ece36 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ ebin/ _build/ +*~ diff --git a/README.md b/README.md index 8286bb0..19144ca 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,13 @@ +## NOTE + +This is a fork of +[erlang_localtime](https://github.com/dmitryme/erlang_localtime), modified +specifically for compatibility with +[qdate](https://github.com/choptastic/qdate). The two are mostly compatible, +but have diverged a bit over the years. The qdate tests will not pass if the +original erlang_localtime dependency is used due to some subtle differences to +attempt to make qdate a little bit smarter. + #### Public exports * utc_to_local(DateTime, Timezone) - converts UTC time to local according to specified Timezone diff --git a/rebar3 b/rebar3 index 8a36476..d1dc07f 100755 Binary files a/rebar3 and b/rebar3 differ diff --git a/src/erlang_localtime.app.src b/src/qdate_localtime.app.src similarity index 55% rename from src/erlang_localtime.app.src rename to src/qdate_localtime.app.src index 9dabaea..cd13a37 100644 --- a/src/erlang_localtime.app.src +++ b/src/qdate_localtime.app.src @@ -1,12 +1,12 @@ -{application, 'erlang_localtime', +{application, 'qdate_localtime', [ - {description, "Erlang library for conversion from one local time to another"}, - {vsn, "1.0.1"}, + {description, "Erlang library for conversion from one local time to another (forked specifically for qdate compatibility)"}, + {vsn, "1.1.0"}, {applications, [kernel, stdlib]}, {modules, []}, {registered, []}, {env, []}, {maintainers, ["Jesse Gumm", "Heinz N. Gies"]}, {licenses, ["BSD"]}, - {links, [{"Github", "https://github.com/choptastic/erlang_localtime"}]} + {links, [{"Github", "https://github.com/choptastic/qdate_localtime"}]} ]}.