Skip to content

Commit

Permalink
Merge pull request #17 from yuce/releasing-0.10.1
Browse files Browse the repository at this point in the history
Releasing 0.10.1
  • Loading branch information
yuce committed Aug 3, 2019
2 parents cc23e30 + b9bfc5d commit 70093d2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,18 @@ In order to learn more about one time password generation, see the following Wik

## News

### 2019-08-03

- Released version 0.10.1 with the following change:

* [Added pot prefix to base32 module avoid name collision](https://github.com/yuce/pot/pull/16) (Thanks to Girish Ramnani). This is a breaking change, `base32` module was renamed to `pot_base32`.


### 2019-07-09

- Released version 0.9.8 with the following bug fix:
* [Return boolean on pot:valid_hotp/2 and pot:valid_hotp/3](https://github.com/yuce/pot/pull/15) (Thanks to Zbigniew Pekala)

* [Return boolean on pot:valid_hotp/2 and pot:valid_hotp/3](https://github.com/yuce/pot/pull/15) (Thanks to Zbigniew Pekala)

### 2018-02-12

Expand Down Expand Up @@ -130,7 +138,7 @@ Include POT in your `mix.exs` as a dependency:

```elixir
defp deps do
[{:pot, "~>0.9.6"}]
[{:pot, "~>0.10.1"}]
end
```

Expand Down Expand Up @@ -203,7 +211,7 @@ token = :pot.totp(secret, [timestamp: {1518, 179058, 919315}])
- Tomasz Jaskowski: [OneTimePass](https://github.com/tadeck/onetimepass) Python library
- Andrew Tunnell-Jones: [base32_erlang](https://github.com/aetrion/base32_erlang) library

Thanks for the [contributors](CONTRIBUTORS).
Thanks to [contributors](CONTRIBUTORS).

## License

Expand Down
2 changes: 1 addition & 1 deletion src/pot.app.src
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

{application, pot,
[{description, "POT is an Erlang library for generating Google Authenticator compatible one time passwords."},
{vsn, "0.9.8"},
{vsn, "0.10.1"},
{registered, []},
{applications,
[kernel,
Expand Down

0 comments on commit 70093d2

Please sign in to comment.