Skip to content

Commit 0a449cd

Browse files
Generate changelog and add PR template (#122)
* Generate CHANGELOG.md file using notes from previous GH releases * Add pull request template * Update CI in PS to v0.14.0-rc5
1 parent 69e23b1 commit 0a449cd

File tree

3 files changed

+239
-1
lines changed

3 files changed

+239
-1
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
**Description of the change**
2+
3+
Clearly and concisely describe the purpose of the pull request. If this PR relates to an existing issue or change proposal, please link to it. Include any other background context that would help reviewers understand the motivation for this PR.
4+
5+
---
6+
7+
**Checklist:**
8+
9+
- [ ] Added the change to the changelog's "Unreleased" section with a reference to this PR (e.g. "- Made a change (#0000)")
10+
- [ ] Linked any existing issues or proposals that this pull request should close
11+
- [ ] Updated or added relevant documentation
12+
- [ ] Added a test for the contribution (if applicable)

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
- uses: purescript-contrib/setup-purescript@main
1616
with:
17-
purescript: "0.14.0-rc3"
17+
purescript: "0.14.0-rc5"
1818

1919
- uses: actions/setup-node@v1
2020
with:

CHANGELOG.md

Lines changed: 226 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,226 @@
1+
# Changelog
2+
3+
Notable changes to this project are documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
4+
5+
## [Unreleased]
6+
7+
Breaking changes:
8+
9+
New features:
10+
11+
Bugfixes:
12+
13+
Other improvements:
14+
15+
## [v6.1.0](https://github.com/purescript/purescript-quickcheck/releases/tag/v6.1.0) - 2019-03-04
16+
17+
Added some functions to give better reporting abilities for pure QuickCheck runs
18+
19+
## [v6.0.0](https://github.com/purescript/purescript-quickcheck/releases/tag/v6.0.0) - 2019-03-02
20+
21+
* Move guide over from documentation repo (@anttih)
22+
* Bump dependencies
23+
24+
## [v5.0.0](https://github.com/purescript/purescript-quickcheck/releases/tag/v5.0.0) - 2018-05-24
25+
26+
Updated for PureScript 0.12
27+
28+
## [v4.7.0](https://github.com/purescript/purescript-quickcheck/releases/tag/v4.7.0) - 2018-03-30
29+
30+
- Added `quickCheckGen` and some variants that specialize the properties to be `Gen`-based (for convenience when using `MonadGen`-constrained properties)
31+
- Added instances for `NonEmptyArray` and `NonEmptyString` (@matthewleon)
32+
33+
## [v4.6.2](https://github.com/purescript/purescript-quickcheck/releases/tag/v4.6.2) - 2018-02-26
34+
35+
- Fixed `resize` resetting seed (@matthewleon)
36+
37+
## [v4.6.1](https://github.com/purescript/purescript-quickcheck/releases/tag/v4.6.1) - 2017-12-20
38+
39+
- Fixed behaviour of `resize` (@safareli)
40+
41+
Previously `resize` would alter the state of `Gen` forever, rather than it being local to the `Gen` that was passed into `resize`. This may alter the behaviour of some existing tests if they relied on the buggy behaviour.
42+
43+
## [v4.6.0](https://github.com/purescript/purescript-quickcheck/releases/tag/v4.6.0) - 2017-09-02
44+
45+
Add `Arbitrary` instance for records (@sharkdp)
46+
47+
## [v4.5.0](https://github.com/purescript/purescript-quickcheck/releases/tag/v4.5.0) - 2017-09-01
48+
49+
Added some more helper comparison operations (@Risto-Stevcev)
50+
51+
## [v4.4.0](https://github.com/purescript/purescript-quickcheck/releases/tag/v4.4.0) - 2017-06-18
52+
53+
- Added `Lazy` instance for `Gen`
54+
55+
## [v4.3.0](https://github.com/purescript/purescript-quickcheck/releases/tag/v4.3.0) - 2017-06-03
56+
57+
Generic deriving for `Arbitrary` and `Coarbitrary` (@LiamGoodacre)
58+
59+
## [v4.2.0](https://github.com/purescript/purescript-quickcheck/releases/tag/v4.2.0) - 2017-06-03
60+
61+
Add shuffle generator (@matthewleon)
62+
63+
## [v4.1.0](https://github.com/purescript/purescript-quickcheck/releases/tag/v4.1.0) - 2017-05-28
64+
65+
- Added `MonadGen` instance
66+
67+
## [v4.0.0](https://github.com/purescript/purescript-quickcheck/releases/tag/v4.0.0) - 2017-03-27
68+
69+
- Updated for PureScript 0.11
70+
- Use `NonEmpty` for `Gen`s where called for (@matthewleon)
71+
- Improved behaviour of `chooseInt` (@matthewleon)
72+
- Added `Arbitrary` and `Coarbitrary` instances for `NonEmpty` and `NonEmptyList` (@matthewleon)
73+
- Added `enum` `Gen` for `BoundedEnum` values (@matthewleon)
74+
75+
## [v3.1.1](https://github.com/purescript/purescript-quickcheck/releases/tag/v3.1.1) - 2016-11-22
76+
77+
- Fixed shadowed variable warning
78+
79+
## [v3.1.0](https://github.com/purescript/purescript-quickcheck/releases/tag/v3.1.0) - 2016-11-07
80+
81+
- Added `suchThat` combinator for `Gen`s
82+
83+
## [v3.0.0](https://github.com/purescript/purescript-quickcheck/releases/tag/v3.0.0) - 2016-10-16
84+
85+
- Updated lists dependency
86+
87+
## [v2.0.0](https://github.com/purescript/purescript-quickcheck/releases/tag/v2.0.0) - 2016-10-14
88+
89+
- Updated dependencies
90+
- Stack safety improvement to `quickCheck` functions
91+
- LCG clamping behaviour was fixed
92+
- Seed is now printed for failing cases
93+
- Tests can now be started with a specific seed
94+
95+
## [v1.0.0](https://github.com/purescript/purescript-quickcheck/releases/tag/v1.0.0) - 2016-06-01
96+
97+
This release is intended for the PureScript 0.9.1 compiler and newer.
98+
99+
**Note**: The v1.0.0 tag is not meant to indicate the library is “finished”, the core libraries are all being bumped to this for the 0.9 compiler release so as to use semver more correctly.
100+
101+
## [v1.0.0-rc.2](https://github.com/purescript/purescript-quickcheck/releases/tag/v1.0.0-rc.2) - 2016-05-20
102+
103+
- Update dependencies and fix warnings
104+
105+
## [v1.0.0-rc.1](https://github.com/purescript/purescript-quickcheck/releases/tag/v1.0.0-rc.1) - 2016-03-27
106+
107+
- Release candidate for the psc 0.8+ core libraries
108+
109+
## [v0.12.2](https://github.com/purescript/purescript-quickcheck/releases/tag/v0.12.2) - 2015-12-16
110+
111+
Fix `repeatable`.
112+
113+
## [v0.12.1](https://github.com/purescript/purescript-quickcheck/releases/tag/v0.12.1) - 2015-11-19
114+
115+
- Fixed import warnings raised in psc 0.7.6
116+
117+
## [v0.12.0](https://github.com/purescript/purescript-quickcheck/releases/tag/v0.12.0) - 2015-09-16
118+
119+
- Bumped dependencies
120+
- Fixed unused type variable warnings
121+
122+
## [v0.11.0](https://github.com/purescript/purescript-quickcheck/releases/tag/v0.11.0) - 2015-08-25
123+
124+
Bump `transformers` dependency to `0.7.1`. As such, this release requires version `0.7.4` of the PureScript compiler.
125+
126+
## [v0.10.1](https://github.com/purescript/purescript-quickcheck/releases/tag/v0.10.1) - 2015-08-17
127+
128+
- Added `Arbitrary` and `Coarbitrary` instances for `Identity`, `Lazy`, and `List`.
129+
130+
## [v0.10.0](https://github.com/purescript/purescript-quickcheck/releases/tag/v0.10.0) - 2015-08-16
131+
132+
- `Gen` should now be stack safe (@hdgarrood)
133+
134+
## [v0.9.0](https://github.com/purescript/purescript-quickcheck/releases/tag/v0.9.0) - 2015-08-13
135+
136+
Updated dependencies
137+
138+
## [v0.8.0](https://github.com/purescript/purescript-quickcheck/releases/tag/v0.8.0) - 2015-08-10
139+
140+
- Fixed poorly behaving LCG. This also involved some breaking changes to the interface (a newtype for `Seed` for one) (@hdgarood)
141+
- Updated dependencies
142+
143+
## [v0.7.0](https://github.com/purescript/purescript-quickcheck/releases/tag/v0.7.0) - 2015-07-17
144+
145+
Modify `QC` type synonym to work around type class instance bug in PSCi.
146+
147+
## [v0.6.0](https://github.com/purescript/purescript-quickcheck/releases/tag/v0.6.0) - 2015-06-30
148+
149+
This release works with versions 0.7.\* of the PureScript compiler. It will not work with older versions. If you are using an older version, you should require an older, compatible version of this library.
150+
151+
## [v0.6.0-rc.2](https://github.com/purescript/purescript-quickcheck/releases/tag/v0.6.0-rc.2) - 2015-06-18
152+
153+
Fix LCG function.
154+
155+
## [v0.6.0-rc.1](https://github.com/purescript/purescript-quickcheck/releases/tag/v0.6.0-rc.1) - 2015-06-10
156+
157+
Initial release candidate of the library intended for the 0.7 compiler.
158+
159+
## [v0.5.2](https://github.com/purescript/purescript-quickcheck/releases/tag/v0.5.2) - 2015-04-04
160+
161+
- Added `Arbitrary` and `CoArbitrary` instances for `Unit` and `Ordering` (@garyb)
162+
163+
## [v0.5.1](https://github.com/purescript/purescript-quickcheck/releases/tag/v0.5.1) - 2015-03-20
164+
165+
Updated docs
166+
167+
## [v0.5.0](https://github.com/purescript/purescript-quickcheck/releases/tag/v0.5.0) - 2015-02-21
168+
169+
**This release requires PureScript v0.6.8 or later**
170+
- Updated dependencies
171+
172+
## [v0.4.0](https://github.com/purescript/purescript-quickcheck/releases/tag/v0.4.0) - 2015-01-10
173+
174+
- Updated `purescript-foldable-traversable` dependency (@garyb)
175+
- Added `(===)` and `(/==)` combinators (@MichaelXavier)
176+
177+
## [v0.3.2](https://github.com/purescript/purescript-quickcheck/releases/tag/v0.3.2) - 2014-12-02
178+
179+
Bump dependencies
180+
181+
## [v0.3.1](https://github.com/purescript/purescript-quickcheck/releases/tag/v0.3.1) - 2014-11-26
182+
183+
184+
185+
## [v0.3.0](https://github.com/purescript/purescript-quickcheck/releases/tag/v0.3.0) - 2014-11-08
186+
187+
Revert to pre-'machines' state.
188+
189+
`purescript-strongcheck` is recommended if you need the industrial-strength version of this library, until the necessary libraries are moved into the core GitHub organization.
190+
191+
## [v0.2.2](https://github.com/purescript/purescript-quickcheck/releases/tag/v0.2.2) - 2014-10-14
192+
193+
194+
195+
## [v0.2.1](https://github.com/purescript/purescript-quickcheck/releases/tag/v0.2.1) - 2014-10-13
196+
197+
- Export functions of type classes, fix dependency versions, added some overlooked conveniences (@jdegoes)
198+
199+
## [v0.2.0](https://github.com/purescript/purescript-quickcheck/releases/tag/v0.2.0) - 2014-10-10
200+
201+
202+
203+
## [v0.1.5](https://github.com/purescript/purescript-quickcheck/releases/tag/v0.1.5) - 2014-09-26
204+
205+
206+
207+
## [0.1.4](https://github.com/purescript/purescript-quickcheck/releases/tag/0.1.4) - 2014-09-25
208+
209+
210+
211+
## [v0.1.3](https://github.com/purescript/purescript-quickcheck/releases/tag/v0.1.3) - 2014-08-07
212+
213+
214+
215+
## [v0.1.2](https://github.com/purescript/purescript-quickcheck/releases/tag/v0.1.2) - 2014-06-14
216+
217+
- Now uses "proper" `Unit` type instead of `{}` (garyb)
218+
219+
## [v0.1.1](https://github.com/purescript/purescript-quickcheck/releases/tag/v0.1.1) - 2014-04-27
220+
221+
222+
223+
## [v0.1.0](https://github.com/purescript/purescript-quickcheck/releases/tag/v0.1.0) - 2014-04-27
224+
225+
226+

0 commit comments

Comments
 (0)