File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## v1.1.0
4+
5+ * Drop support for Elixir 1.11 and lower, require Elixir 1.12+ now.
6+
37## v1.0.0
48
59No changes. This is just the 1.0 release. Happy fuzzying!
Original file line number Diff line number Diff line change @@ -963,7 +963,7 @@ defmodule StreamData do
963963 { :ok , length } when is_integer ( length ) and length >= 0 ->
964964 { length , length }
965965
966- { :ok , min .. max } when min >= 0 and max >= 0 ->
966+ { :ok , min .. max // _ } when min >= 0 and max >= 0 ->
967967 order ( min , max )
968968
969969 { :ok , other } ->
Original file line number Diff line number Diff line change 11defmodule StreamData.Mixfile do
22 use Mix.Project
33
4- @ version "1.0 .0"
4+ @ version "1.1 .0"
55 @ repo_url "https://github.com/whatyouhide/stream_data"
66
77 def project ( ) do
88 [
99 app: :stream_data ,
1010 version: @ version ,
11- elixir: "~> 1.11 " ,
11+ elixir: "~> 1.12 " ,
1212 start_permanent: Mix . env ( ) == :prod ,
1313 deps: deps ( ) ,
1414
You can’t perform that action at this time.
0 commit comments