-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
List of changes: - Use common source url - Update gitignore - Update markdown - Set readme as default page - Add changelog to html doc - Bump license years - Badges and more badges! - Update date to changelog - Add changelog link to hex info page
- Loading branch information
Showing
7 changed files
with
93 additions
and
58 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 |
---|---|---|
@@ -1,8 +1,26 @@ | ||
# The directory Mix will write compiled artifacts to. | ||
/_build/ | ||
|
||
# If you run "mix test --cover", coverage assets end up here. | ||
/cover/ | ||
|
||
# The directory Mix downloads your dependencies sources to. | ||
/deps/ | ||
|
||
# Where third-party dependencies like ExDoc output generated docs. | ||
/doc/ | ||
/priv/ | ||
|
||
# Ignore .fetch files in case you like to edit your project deps locally. | ||
/.fetch | ||
|
||
# If the VM crashes, it generates a dump, let's ignore it too. | ||
erl_crash.dump | ||
|
||
# Also ignore archive artifacts (built via "mix archive.build"). | ||
*.ez | ||
|
||
# Ignore package tarball (built via "mix hex.build"). | ||
bcrypt_elixir-*.tar | ||
|
||
# Temporary files for e.g. tests | ||
/tmp |
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,31 +1,31 @@ | ||
# Changelog | ||
|
||
## v2.3.0 | ||
## v2.3.0 (2021-01-07) | ||
|
||
* Enhancements | ||
* updated Makefile to be more robust, especially for Nerves users | ||
* Updated Makefile to be more robust, especially for Nerves users | ||
|
||
## v2.2.0 | ||
## v2.2.0 (2020-03-01) | ||
|
||
* Changes | ||
* using Comeonin v5.3, which changes `add_hash` so that it does NOT set the password to nil | ||
* Using Comeonin v5.3, which changes `add_hash` so that it does NOT set the password to nil | ||
|
||
## v2.1.0 | ||
## v2.1.0 (2020-01-20) | ||
|
||
* Enhancements | ||
* Updated documentation - in line with updates to Comeonin v5.2 | ||
|
||
## v2.0.0 | ||
## v2.0.0 (2019-02-12) | ||
|
||
* Enhancements | ||
* Updated to use the Comeonin and Comeonin.PasswordHash behaviours (Comeonin v5.0) | ||
|
||
## v1.0.0 | ||
## v1.0.0 (2019-01-17) | ||
|
||
* Enhancements | ||
* Updated C NIF code to use dirty schedulers | ||
|
||
## v0.12.0 | ||
## v0.12.0 (2017-08-06) | ||
|
||
* Changes | ||
* Created separate Bcrypt library |
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 |
---|---|---|
|
@@ -58,7 +58,7 @@ This password hashing algorithm was designed by David Mazieres | |
All other code in this application, unless otherwise stated, is subject | ||
to the following license: | ||
|
||
Copyright (c) 2014-2018 David Whitlock <[email protected]> | ||
Copyright (c) 2014-2021 David Whitlock <[email protected]> | ||
|
||
Some rights reserved. | ||
Redistribution and use in source and binary forms of the software as well | ||
|
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
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
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
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