Skip to content

Commit 9d442ea

Browse files
authored
Add 25.1.1 in tested OTP versions (#299)
While at it, do some minor copyright-related updates.
1 parent bfd7d86 commit 9d442ea

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
strategy:
2121
matrix:
2222
otp:
23+
- "25.1.1"
2324
- "25.0"
2425
- "24.3"
2526
- "24.0"
@@ -43,7 +44,7 @@ jobs:
4344
examples:
4445
name: Test examples
4546
runs-on: ubuntu-latest
46-
container: erlang:25.0
47+
container: erlang:25.1.1
4748
steps:
4849
- name: Checkout code
4950
uses: actions/checkout@v2
@@ -53,7 +54,7 @@ jobs:
5354
parallel-examples:
5455
name: Test examples in parallel
5556
runs-on: ubuntu-latest
56-
container: erlang:25.0
57+
container: erlang:25.1.1
5758
steps:
5859
- name: Checkout code
5960
uses: actions/checkout@v2
@@ -63,7 +64,7 @@ jobs:
6364
coverage:
6465
name: Code coverage
6566
runs-on: ubuntu-latest
66-
container: erlang:25.0
67+
container: erlang:25.1.1
6768
steps:
6869
- name: Checkout code
6970
uses: actions/checkout@v2

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ incompatibilities between the two tools by now.
195195
<!-- Badges (alphabetically) -->
196196
[codecov badge]: https://codecov.io/gh/proper-testing/proper/branch/master/graph/badge.svg
197197
[commit badge]: https://img.shields.io/github/last-commit/proper-testing/proper.svg?style=flat-square
198-
[erlang versions badge]: https://img.shields.io/badge/erlang-21.0%20to%2025.0-blue.svg?style=flat-square
198+
[erlang versions badge]: https://img.shields.io/badge/erlang-21.0%20to%2025.1-blue.svg?style=flat-square
199199
[hex pm badge]: https://img.shields.io/hexpm/v/proper.svg?style=flat
200200
[license badge]: https://img.shields.io/github/license/proper-testing/proper.svg?style=flat-square
201201
[release badge]: https://img.shields.io/github/release/proper-testing/proper.svg?style=flat-square

examples/labyrinth.erl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
%%% -*- coding: utf-8; erlang-indent-level: 2 -*-
22
%%% -------------------------------------------------------------------
3-
%%% Copyright (c) 2017-2021 Andreas Löscher <[email protected]>
3+
%%% Copyright (c) 2017-2022 Andreas Löscher <[email protected]>
44
%%% and Kostis Sagonas <[email protected]>
55
%%%
66
%%% This file is part of PropEr.
@@ -18,7 +18,7 @@
1818
%%% You should have received a copy of the GNU General Public License
1919
%%% along with PropEr. If not, see <http://www.gnu.org/licenses/>.
2020

21-
%%% @copyright 2017-2021 Andreas Löscher and Kostis Sagonas
21+
%%% @copyright 2017-2022 Andreas Löscher and Kostis Sagonas
2222
%%% @version {@version}
2323
%%% @author Andreas Löscher and Kostis Sagonas
2424

src/proper_target.erl

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
%%% -*- coding: utf-8 -*-
2-
%%% -*- erlang-indent-level: 2 -*-
1+
%%% -*- coding: utf-8; erlang-indent-level: 2 -*-
32
%%% -------------------------------------------------------------------
4-
%%% Copyright (c) 2017-2021 Andreas Löscher <[email protected]>
3+
%%% Copyright (c) 2017-2022 Andreas Löscher <[email protected]>
54
%%% and Kostis Sagonas <[email protected]>
65
%%%
76
%%% This file is part of PropEr.
@@ -19,17 +18,17 @@
1918
%%% You should have received a copy of the GNU General Public License
2019
%%% along with PropEr. If not, see <http://www.gnu.org/licenses/>.
2120

22-
%%% @copyright 2017-2021 Andreas Löscher and Kostis Sagonas
21+
%%% @copyright 2017-2022 Andreas Löscher and Kostis Sagonas
2322
%%% @version {@version}
2423
%%% @author Andreas Löscher
2524

2625
%%% @doc This module defines the top-level behaviour for Targeted
2726
%%% Property-Based Testing (TPBT). Using TPBT the input generation
2827
%%% is no longer random, but guided by a search strategy to increase
29-
%%% the probability of finding failing input. For this to work the user
28+
%%% the probability of finding failing input. For this to work, the user
3029
%%% has to specify a search strategy and also needs to extract
31-
%%% utility-values from the system under test that the search strategy
32-
%%% then tries to maximize.
30+
%%% utility values from the system under test that the search strategy
31+
%%% then tries to maximize (or minimize).
3332
%%%
3433
%%% To use TPBT the test specification macros `?FORALL_TARGETED`, `?EXISTS',
3534
%%% and `?NOT_EXISTS' are used. The typical structure for a targeted

0 commit comments

Comments
 (0)