This repository has been archived by the owner on Apr 30, 2018. It is now read-only.
forked from zerotao/erlang_iso8601
-
Notifications
You must be signed in to change notification settings - Fork 4
[Fix #10] Incorporate changes from erlsci #11
Open
elbrujohalcon
wants to merge
88
commits into
inaka:master
Choose a base branch
from
erlsci:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
It is not necessary to build a custom type for date and time as there already is one define by calendar module: calendar:datetime(). Apart from that, Erlang 18.2.1 compiler returns type tuple(_,_,_) undefined while trying to compile the old definition.
Current type specification for a tuple is: Tuple :: tuple() | {} | {TList} TList :: Type | Type, TList
This change ensures that the original behaviour is duplicated (the test file getting compiled and placed into the ebin directory).
* Updated ignores * Removed trailing whitespace * Fixed reversion
This change ensures that the original behaviour is duplicated (the test file getting compiled and placed into the ebin directory).
* Updated ignores * Removed trailing whitespace * Fixed reversion
Conflicts: rebar.config
Fixed Erlang 18.0 compile issues.
Update README.md
Also changed its colour :-)
Includes several bug fixes (last 5 or 6 commits since previous bug-fix release).
Fixed a typo and omission in EDoc comments
Closes #41
fix iso8601:format/1 spec
add erlang 20 for test
Implementation is taken from https://github.com/sl45sms/erlang_iso8601
Support iso8601 durations
Added subtract_time function, with tests and example usage.
Conflicts should be fixed. |
Signed-off-by: Leonardo Rossi <[email protected]>
Fix add month function
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
[Fix #10] Incorporate changes from erlsci