diff --git a/README.md b/README.md index 8d1cd06..1ac6cd1 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,7 @@ # ExCheck [![Build Status](https://secure.travis-ci.org/parroty/excheck.svg?branch=master "Build Status")](http://travis-ci.org/parroty/excheck) [![Coverage Status](http://img.shields.io/coveralls/parroty/excheck.svg)](https://coveralls.io/r/parroty/excheck) [![Inline docs](http://inch-ci.org/github/parroty/excheck.svg?branch=master&style=flat)](http://inch-ci.org/github/parroty/excheck) Property-based testing for Elixir (QuickCheck style). -It uses Erlang's [triq](https://github.com/krestenkrab/triq) library for underlying checking engine, and ExCheck's modules provide wrapper macros for ExUnit tests. - -Note: as of v0.5, `triqng/triq` is applied for fixing the issue #30. +It uses Erlang's [triq](https://gitlab.com/triq/triq) library for underlying checking engine, and ExCheck's modules provide wrapper macros for ExUnit tests. ### Installation @@ -12,8 +10,7 @@ First add ExCheck and triq to your project's dependencies in mix.exs. ```Elixir defp deps do [ - {:excheck, "~> 0.5", only: :test}, - {:triq, github: "triqng/triq", only: :test} + {:excheck, "~> 0.6", only: :test} ] end ``` diff --git a/mix.exs b/mix.exs index 988ea79..292c10b 100644 --- a/mix.exs +++ b/mix.exs @@ -6,7 +6,7 @@ defmodule ExCheck.Mixfile do name: "ExCheck", source_url: "https://github.com/parroty/ExCheck.git", homepage_url: "https://github.com/parroty/ExCheck.git", - version: "0.5.3", + version: "0.6.0", elixir: "~> 1.0", deps: deps(), description: description(), @@ -26,7 +26,7 @@ defmodule ExCheck.Mixfile do def deps do [ {:excoveralls, "~> 0.5", only: :test}, - {:triq, github: "triqng/triq", only: [:dev, :test]}, + {:triq, "~> 1.2", only: [:dev, :test]}, {:ex_doc, "~> 0.12", only: :dev}, {:inch_ex, only: :docs} ] diff --git a/mix.lock b/mix.lock index 058bbf5..f058eae 100644 --- a/mix.lock +++ b/mix.lock @@ -15,4 +15,4 @@ "poison": {:hex, :poison, "2.2.0", "4763b69a8a77bd77d26f477d196428b741261a761257ff1cf92753a0d4d24a63", [:mix], []}, "ssl_verify_fun": {:hex, :ssl_verify_fun, "1.1.0", "edee20847c42e379bf91261db474ffbe373f8acb56e9079acb6038d4e0bf414f", [:rebar, :make], []}, "ssl_verify_hostname": {:hex, :ssl_verify_hostname, "1.0.5", "2e73e068cd6393526f9fa6d399353d7c9477d6886ba005f323b592d389fb47be", [:make], []}, - "triq": {:git, "https://github.com/triqng/triq.git", "810eed84f66cc2596cf26ce731beed34ae3ed977", []}} + "triq": {:hex, :triq, "1.2.0", "3fbf99c16671f084b558f7e799e38d92835d67dcc012fb40d418330ea1053455", [:rebar3], []}}