Skip to content
This repository has been archived by the owner on Jan 20, 2022. It is now read-only.

Commit

Permalink
0.12.7: fix mix.exs compilers directive
Browse files Browse the repository at this point in the history
  • Loading branch information
jj1bdx committed Jan 13, 2016
1 parent 591d713 commit edf7acf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# sfmt-erlang: SIMD-oriented Fast Mersenne Twister (SFMT) for Erlang

* Version 0.12.6 13-JAN-2016
* Version 0.12.7 13-JAN-2016
* Edited and written by Kenji Rikitake (Kenji Rikitake Professional Engineer's Office)
* Email contact: <kenji.rikitake@acm.org>

Expand Down Expand Up @@ -58,7 +58,7 @@ Note well: only (2^19937 - 1) period is supported.

## hex.pm support

* NIF building errors fixed (0.12.6 and later)
* NIF building errors fixed (0.12.7 and later)
* Package name: `sfmt`
* See `mix.exs`
* Note: all builds including C and Erlang source compilation are done with `make` with `erlang.mk`
Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ defmodule Sfmt.Mixfile do

def project do
[app: :sfmt,
version: "0.12.6",
version: "0.12.7",
description: description,
package: package,
compilers: [:sfmt, :app],
compilers: [:sfmt] ++ Mix.compilers,
deps: deps]
end

Expand Down

0 comments on commit edf7acf

Please sign in to comment.