Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## Current Development

* Documentation and tiny fixes

## 1.5.0

* Support for PropEr 1.5
* Support for Elixir 1.18 and Erlang 27
* Documentation fixes

## 1.4.2

* Eliminate warnings on dependencies. Thanks to <https://github.com/iToXiQ>
Expand Down
4 changes: 2 additions & 2 deletions lib/statem_dsl.ex
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ defmodule PropCheck.StateM.DSL do

@doc """
_DEPRECATED_ : This module is deprecated, please use
`PropCheck.Statem.ModelDSL` instead.
`PropCheck.StateM.ModelDSL` instead.

The optional weights for the command generation. It takes the current
model state and returns a map of command/weight pairs. Commands,
Expand Down Expand Up @@ -291,7 +291,7 @@ defmodule PropCheck.StateM.DSL do
@deprecated "This module is deprecated, use `PropCheck.StateM.ModelDSL` instead!"
@doc """
_DEPRECATED_ : This module is deprecated, please use
`PropCheck.Statem.ModelDSL` instead.
`PropCheck.StateM.ModelDSL` instead.

Defines a new command of the model.

Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ defmodule PropCheck.Mixfile do
defp package do
[
maintainers: ["Klaus Alfert", "evnu"],
licenses: ["GPL 3.0"],
licenses: ["GPL-3.0-or-later"],
links: %{"GitHub" => @source_url}
]
end
Expand Down
Loading