-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from inaka/elbrujohalcon.22.produce_release_1_…
…0_0_and_publ Produce Release 1.0.0 and publish it to hex.pm
- Loading branch information
Showing
2 changed files
with
44 additions
and
9 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Change Log | ||
|
||
## [1.0.0](https://github.com/inaka/rpsls/tree/1.0.0) (2018-06-05) | ||
**Closed issues:** | ||
|
||
- Update dependencies [\#20](https://github.com/inaka/rpsls/issues/20) | ||
|
||
**Merged pull requests:** | ||
|
||
- Add Testing [\#21](https://github.com/inaka/rpsls/pull/21) ([elbrujohalcon](https://github.com/elbrujohalcon)) | ||
- Move to rebar3 [\#19](https://github.com/inaka/rpsls/pull/19) ([elbrujohalcon](https://github.com/elbrujohalcon)) | ||
- Elian Gidoni player [\#18](https://github.com/inaka/rpsls/pull/18) ([elbrujohalcon](https://github.com/elbrujohalcon)) | ||
- add Eduardo's new player. [\#17](https://github.com/inaka/rpsls/pull/17) ([elbrujohalcon](https://github.com/elbrujohalcon)) | ||
- Remove dead hipchat link [\#16](https://github.com/inaka/rpsls/pull/16) ([elbrujohalcon](https://github.com/elbrujohalcon)) | ||
- Updated license [\#15](https://github.com/inaka/rpsls/pull/15) ([spike886](https://github.com/spike886)) | ||
- Create LICENSE [\#14](https://github.com/inaka/rpsls/pull/14) ([andresinaka](https://github.com/andresinaka)) | ||
- C.A.B.R.A Player. [\#13](https://github.com/inaka/rpsls/pull/13) ([cabol](https://github.com/cabol)) | ||
- rpsls\_nicolas\_player.erl [\#12](https://github.com/inaka/rpsls/pull/12) ([nicolasmd87](https://github.com/nicolasmd87)) | ||
- Joachim test [\#8](https://github.com/inaka/rpsls/pull/8) ([Joachim31415](https://github.com/Joachim31415)) | ||
- new test file for alternating player [\#7](https://github.com/inaka/rpsls/pull/7) ([Joachim31415](https://github.com/Joachim31415)) | ||
- new player elephant and test file for player bart [\#6](https://github.com/inaka/rpsls/pull/6) ([Joachim31415](https://github.com/Joachim31415)) | ||
- Joachim2 pulling lisa [\#5](https://github.com/inaka/rpsls/pull/5) ([Joachim31415](https://github.com/Joachim31415)) | ||
- Added a new player bart [\#4](https://github.com/inaka/rpsls/pull/4) ([Joachim31415](https://github.com/Joachim31415)) | ||
- Hi Inaka team, please welcome Randy [\#3](https://github.com/inaka/rpsls/pull/3) ([tovbinm](https://github.com/tovbinm)) | ||
- Beatself player. The idea is your previous throw affects greatly of the next throw of the other party. So try to beat the throws that beat your previous throw. While writing the code, cannot help to extend it to beat copycat and those repeaters. [\#2](https://github.com/inaka/rpsls/pull/2) ([georgeye](https://github.com/georgeye)) | ||
- rockemspockem by leorleor [\#1](https://github.com/inaka/rpsls/pull/1) ([leorleor](https://github.com/leorleor)) | ||
|
||
|
||
|
||
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)* |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,14 @@ | ||
{application, rpsls, | ||
[ | ||
{description, "Rock Paper Scissors Lizzard Spock"}, | ||
{vsn, "0.0.0"}, | ||
{registered, []}, | ||
{applications, [kernel, stdlib, lager]}, | ||
{mod, {rpsls, []}}, | ||
{env, []} | ||
]}. | ||
{ application | ||
, rpsls | ||
, [ {description, "Rock Paper Scissors Lizzard Spock"} | ||
, {vsn, "1.0.0"} | ||
, {id, "rpsls"} | ||
, {registered, []} | ||
, {applications, [kernel, stdlib, lager]} | ||
, {mod, {rpsls, []}} | ||
, {env, []} | ||
, {maintainers, ["Inaka"]} | ||
, {licenses, ["Apache2"]} | ||
, {links, [{"Github", "https://github.com/inaka/rpsls"}]} | ||
] | ||
}. |