Skip to content

Commit

Permalink
Release v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
whatyouhide committed May 29, 2024
1 parent 5f7344f commit 40242b6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v1.1.0

* Drop support for Elixir 1.11 and lower, require Elixir 1.12+ now.

## v1.0.0

No changes. This is just the 1.0 release. Happy fuzzying!
Expand Down
2 changes: 1 addition & 1 deletion lib/stream_data.ex
Original file line number Diff line number Diff line change
Expand Up @@ -963,7 +963,7 @@ defmodule StreamData do
{:ok, length} when is_integer(length) and length >= 0 ->
{length, length}

{:ok, min..max} when min >= 0 and max >= 0 ->
{:ok, min..max//_} when min >= 0 and max >= 0 ->
order(min, max)

{:ok, other} ->
Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
defmodule StreamData.Mixfile do
use Mix.Project

@version "1.0.0"
@version "1.1.0"
@repo_url "https://github.com/whatyouhide/stream_data"

def project() do
[
app: :stream_data,
version: @version,
elixir: "~> 1.11",
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
deps: deps(),

Expand Down

0 comments on commit 40242b6

Please sign in to comment.