Skip to content

Commit 40242b6

Browse files
committed
Release v1.1.0
1 parent 5f7344f commit 40242b6

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
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

59
No changes. This is just the 1.0 release. Happy fuzzying!

lib/stream_data.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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} ->

mix.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
defmodule 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

0 commit comments

Comments
 (0)