Skip to content

Commit 6d8e30e

Browse files
Generate changelog and add PR template (#187)
* 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 fc35f2d commit 6d8e30e

File tree

3 files changed

+323
-1
lines changed

3 files changed

+323
-1
lines changed

.github/PULL_REQUEST_TEMPLATE.md

+12
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

+1-1
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

+310
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,310 @@
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+
## [v5.4.1](https://github.com/purescript/purescript-lists/releases/tag/v5.4.1) - 2019-05-06
16+
17+
Fixes a shadowed name warning in advance of new `purs` version
18+
19+
## [v5.4.0](https://github.com/purescript/purescript-lists/releases/tag/v5.4.0) - 2019-02-09
20+
21+
Added `scanrLazy` for lazy lists (@drewolson)
22+
23+
## [v5.3.0](https://github.com/purescript/purescript-lists/releases/tag/v5.3.0) - 2018-08-31
24+
25+
- Added `cons'` and `snoc'` variations for `NonEmptyList` that construct from an `a`+`List a`
26+
27+
## [v5.2.0](https://github.com/purescript/purescript-lists/releases/tag/v5.2.0) - 2018-08-19
28+
29+
- Added `Unfoldable1` instances for `NonEmptyList`s
30+
31+
## [v5.1.0](https://github.com/purescript/purescript-lists/releases/tag/v5.1.0) - 2018-08-19
32+
33+
- Added `FunctorWithIndex` and related instances for `NonEmptyList`s (@cryogenian)
34+
35+
## [v5.0.0](https://github.com/purescript/purescript-lists/releases/tag/v5.0.0) - 2018-05-23
36+
37+
- Updated for PureScript 0.12
38+
- Fixed a bug in `take` for lazy lists (@ibara1454)
39+
- Added `tails` (@colehaus)
40+
41+
## [v4.12.0](https://github.com/purescript/purescript-lists/releases/tag/v4.12.0) - 2017-11-30
42+
43+
Add indexed `Functor`, `Foldable` and `Traversable` instances (@matthewleon)
44+
45+
## [v4.11.0](https://github.com/purescript/purescript-lists/releases/tag/v4.11.0) - 2017-11-02
46+
47+
Short circuit `drop` and `take` on negative inputs (@mlms13)
48+
49+
## [v4.10.0](https://github.com/purescript/purescript-lists/releases/tag/v4.10.0) - 2017-09-09
50+
51+
Add `dropEnd` and `takeEnd` (@notgiorgi)
52+
53+
## [v4.9.1](https://github.com/purescript/purescript-lists/releases/tag/v4.9.1) - 2017-09-03
54+
55+
Require `foldable-traversable` explicitly (@MonoidMusician)
56+
57+
## [v4.9.0](https://github.com/purescript/purescript-lists/releases/tag/v4.9.0) - 2017-07-06
58+
59+
Add `stripPrefix` for `List.Lazy` (@safareli)
60+
61+
## [v4.8.0](https://github.com/purescript/purescript-lists/releases/tag/v4.8.0) - 2017-06-30
62+
63+
- Added most list operations for `NonEmptyList`
64+
- Added `Foldable1` and `Traversable1` instances for `NonEmptyList`
65+
66+
## [v4.7.0](https://github.com/purescript/purescript-lists/releases/tag/v4.7.0) - 2017-06-13
67+
68+
- Added `cons`, `snoc`, and `unsnoc` for `Data.List.NonEmpty` (@natefaubion)
69+
70+
## [v4.6.1](https://github.com/purescript/purescript-lists/releases/tag/v4.6.1) - 2017-06-07
71+
72+
Require `tailrec^3.3.0`
73+
74+
## [v4.6.0](https://github.com/purescript/purescript-lists/releases/tag/v4.6.0) - 2017-06-04
75+
76+
Add `stripPrefix` and `Pattern` to `Data.List` (@safareli)
77+
78+
## [v4.5.0](https://github.com/purescript/purescript-lists/releases/tag/v4.5.0) - 2017-06-04
79+
80+
Add `foldrLazy` (@matthewleon)
81+
82+
## [v4.4.0](https://github.com/purescript/purescript-lists/releases/tag/v4.4.0) - 2017-06-03
83+
84+
Add `partition` (@matthewleon)
85+
86+
## [v4.3.0](https://github.com/purescript/purescript-lists/releases/tag/v4.3.0) - 2017-05-28
87+
88+
- `sort` and `sortBy` for `NonEmptyList` (@matthewleon)
89+
90+
## [v4.2.0](https://github.com/purescript/purescript-lists/releases/tag/v4.2.0) - 2017-05-28
91+
92+
- Reimplement `snoc` using `foldr` (@LiamGoodacre)
93+
- Use `~>` where appropriate (@matthewleon)
94+
- Add `repeat` and `iterate` for non-empty lazy lists (@matthewleon)
95+
96+
## [v4.1.1](https://github.com/purescript/purescript-lists/releases/tag/v4.1.1) - 2017-05-09
97+
98+
- Export `last` for `NonEmptyList`s
99+
100+
## [v4.1.0](https://github.com/purescript/purescript-lists/releases/tag/v4.1.0) - 2017-04-27
101+
102+
- Added `some` and `many` for `Data.List.Lazy` (@safareli)
103+
104+
## [v4.0.1](https://github.com/purescript/purescript-lists/releases/tag/v4.0.1) - 2017-03-29
105+
106+
- Restore compiler-optimized TCO operations
107+
108+
## [v4.0.0](https://github.com/purescript/purescript-lists/releases/tag/v4.0.0) - 2017-03-26
109+
110+
- Updated for PureScript 0.11.0
111+
- Swapped arguments of `mapWithIndex` for consistency with `purescript-arrays`
112+
- Various code style tweaks & warning fixes (@matthewleon)
113+
- Added `appendFoldable` for `NonEmptyList`s (@matthewleon)
114+
115+
## [v3.4.0](https://github.com/purescript/purescript-lists/releases/tag/v3.4.0) - 2017-01-29
116+
117+
Add `unsnoc` (@joshuahhh)
118+
119+
## [v3.3.0](https://github.com/purescript/purescript-lists/releases/tag/v3.3.0) - 2016-12-27
120+
121+
Use `~>` where appropriate (@mlang)
122+
123+
## [v3.2.2](https://github.com/purescript/purescript-lists/releases/tag/v3.2.2) - 2016-12-24
124+
125+
Stack safety for various functions (@sammthomson)
126+
127+
## [v3.2.1](https://github.com/purescript/purescript-lists/releases/tag/v3.2.1) - 2016-11-14
128+
129+
- Fixed shadowed name warnings
130+
131+
## [v3.2.0](https://github.com/purescript/purescript-lists/releases/tag/v3.2.0) - 2016-11-02
132+
133+
- Adds an implementation of `traverse` which does not grow the stack.
134+
135+
## [v3.1.0](https://github.com/purescript/purescript-lists/releases/tag/v3.1.0) - 2016-10-28
136+
137+
- Added `manyRec` and `someRec` - stack safe versions of `many` and `some` via `MonadRec`.
138+
139+
## [v3.0.1](https://github.com/purescript/purescript-lists/releases/tag/v3.0.1) - 2016-10-28
140+
141+
- Fix `purescript-generics` dependency to use `^` rather than `v`.
142+
143+
## [v3.0.0](https://github.com/purescript/purescript-lists/releases/tag/v3.0.0) - 2016-10-16
144+
145+
- The `group` functions now return `NonEmptyList` typed values rather than `NonEmpty List`
146+
- The lazy non-empty list is now lazier
147+
- The modules have been rearranged internally
148+
149+
## [v2.1.0](https://github.com/purescript/purescript-lists/releases/tag/v2.1.0) - 2016-10-13
150+
151+
- Added `Data.List.NonEmpty` (a `newtype` of `NonEmpty List a` with additional instances)
152+
- Added `Extend` instance for `List`
153+
154+
## [v2.0.0](https://github.com/purescript/purescript-lists/releases/tag/v2.0.0) - 2016-10-09
155+
156+
- Updated dependencies
157+
- The `group` functions now return `NonEmpty` groups
158+
- `show` now uses `:` in printing
159+
160+
## [v1.0.1](https://github.com/purescript/purescript-lists/releases/tag/v1.0.1) - 2016-06-11
161+
162+
- Added `Fail` instance for `Bind ZipList` (@joneshf)
163+
164+
## [v1.0.0](https://github.com/purescript/purescript-lists/releases/tag/v1.0.0) - 2016-06-01
165+
166+
This release is intended for the PureScript 0.9.1 compiler and newer.
167+
168+
**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.
169+
170+
## [v1.0.0-rc.3](https://github.com/purescript/purescript-lists/releases/tag/v1.0.0-rc.3) - 2016-05-22
171+
172+
- Added `Generic` instance for `List`
173+
174+
## [v1.0.0-rc.2](https://github.com/purescript/purescript-lists/releases/tag/v1.0.0-rc.2) - 2016-05-20
175+
176+
- Fixed errors and warnings
177+
178+
## [v1.0.0-rc.1](https://github.com/purescript/purescript-lists/releases/tag/v1.0.0-rc.1) - 2016-03-25
179+
180+
- Release candidate for the psc 0.8+ core libraries
181+
182+
## [v0.7.10](https://github.com/purescript/purescript-lists/releases/tag/v0.7.10) - 2016-02-27
183+
184+
Add `transpose` (@hdgarrood)
185+
186+
## [v0.7.9](https://github.com/purescript/purescript-lists/releases/tag/v0.7.9) - 2016-01-11
187+
188+
Add `fromFoldable`, `toUnfoldable` (@hdgarrood)
189+
190+
## [v0.7.8](https://github.com/purescript/purescript-lists/releases/tag/v0.7.8) - 2016-01-06
191+
192+
Make list `unfoldr` stack-safe (@rgrempel)
193+
194+
## [v0.7.7](https://github.com/purescript/purescript-lists/releases/tag/v0.7.7) - 2015-11-02
195+
196+
- Removed unused imports
197+
198+
## [v0.7.6](https://github.com/purescript/purescript-lists/releases/tag/v0.7.6) - 2015-10-16
199+
200+
- Fixed warnings
201+
202+
## [v0.7.5](https://github.com/purescript/purescript-lists/releases/tag/v0.7.5) - 2015-09-27
203+
204+
Fix imports.
205+
206+
## [v0.7.4](https://github.com/purescript/purescript-lists/releases/tag/v0.7.4) - 2015-09-08
207+
208+
Optimizations (@cryogenian)
209+
210+
## [v0.7.3](https://github.com/purescript/purescript-lists/releases/tag/v0.7.3) - 2015-08-31
211+
212+
Make `foldl` stack-safe.
213+
214+
## [v0.7.2](https://github.com/purescript/purescript-lists/releases/tag/v0.7.2) - 2015-08-16
215+
216+
Update `LICENSE` file to include GHC license.
217+
218+
## [v0.7.1](https://github.com/purescript/purescript-lists/releases/tag/v0.7.1) - 2015-08-03
219+
220+
- Fixed warning messages about shadowed names and partial pattern matches
221+
222+
## [v0.7.0](https://github.com/purescript/purescript-lists/releases/tag/v0.7.0) - 2015-06-30
223+
224+
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.
225+
226+
## [v0.7.0-rc.5](https://github.com/purescript/purescript-lists/releases/tag/v0.7.0-rc.5) - 2015-06-16
227+
228+
Add `ZipList`.
229+
230+
## [v0.7.0-rc.4](https://github.com/purescript/purescript-lists/releases/tag/v0.7.0-rc.4) - 2015-06-15
231+
232+
Fix `updateAt`, `alterAt`.
233+
234+
## [v0.7.0-rc.3](https://github.com/purescript/purescript-lists/releases/tag/v0.7.0-rc.3) - 2015-06-14
235+
236+
- Fixed behaviour of `range` when `start = end` (@sharkdp)
237+
238+
## [v0.7.0-rc.2](https://github.com/purescript/purescript-lists/releases/tag/v0.7.0-rc.2) - 2015-06-11
239+
240+
Fix `test-src`
241+
242+
## [v0.7.0-rc.1](https://github.com/purescript/purescript-lists/releases/tag/v0.7.0-rc.1) - 2015-06-08
243+
244+
Initial release candidate of the library intended for the 0.7 compiler.
245+
246+
## [v0.6.2](https://github.com/purescript/purescript-lists/releases/tag/v0.6.2) - 2015-05-09
247+
248+
Fix typo in `ListT Apply` and add `ZipListT` (@puffnfresh)
249+
250+
## [v0.6.1](https://github.com/purescript/purescript-lists/releases/tag/v0.6.1) - 2015-05-08
251+
252+
Make `Apply` and `Bind` instances for `ListT` consistent. (@puffnfresh)
253+
254+
## [v0.6.0](https://github.com/purescript/purescript-lists/releases/tag/v0.6.0) - 2015-02-21
255+
256+
**This release requires PureScript v0.6.8 or later**
257+
- Updated dependencies
258+
259+
## [v0.5.0](https://github.com/purescript/purescript-lists/releases/tag/v0.5.0) - 2015-01-10
260+
261+
- Updated `purescript-transformers`, `purescript-lazy`, and `purescript-quickcheck` dependencies (@garyb)
262+
263+
## [v0.4.0](https://github.com/purescript/purescript-lists/releases/tag/v0.4.0) - 2015-01-10
264+
265+
Remove `scanl`, bump `foldable` dependency.
266+
267+
## [v0.3.9](https://github.com/purescript/purescript-lists/releases/tag/v0.3.9) - 2014-12-13
268+
269+
270+
271+
## [v0.3.8](https://github.com/purescript/purescript-lists/releases/tag/v0.3.8) - 2014-12-09
272+
273+
Bump `unfoldable` dependency.
274+
275+
## [v0.3.7](https://github.com/purescript/purescript-lists/releases/tag/v0.3.7) - 2014-11-26
276+
277+
278+
279+
## [v0.3.5](https://github.com/purescript/purescript-lists/releases/tag/v0.3.5) - 2014-11-18
280+
281+
Fixes for compiler version 0.6.1
282+
283+
## [v0.3.4](https://github.com/purescript/purescript-lists/releases/tag/v0.3.4) - 2014-11-14
284+
285+
286+
287+
## [v0.3.3](https://github.com/purescript/purescript-lists/releases/tag/v0.3.3) - 2014-11-08
288+
289+
290+
291+
## [v0.3.2](https://github.com/purescript/purescript-lists/releases/tag/v0.3.2) - 2014-10-29
292+
293+
294+
295+
## [v0.3.1](https://github.com/purescript/purescript-lists/releases/tag/v0.3.1) - 2014-10-06
296+
297+
298+
299+
## [v0.3.0](https://github.com/purescript/purescript-lists/releases/tag/v0.3.0) - 2014-10-01
300+
301+
- `ListT` by @jdegoes
302+
303+
## [v0.2.0](https://github.com/purescript/purescript-lists/releases/tag/v0.2.0) - 2014-08-13
304+
305+
306+
307+
## [v0.0.1](https://github.com/purescript/purescript-lists/releases/tag/v0.0.1) - 2014-07-07
308+
309+
310+

0 commit comments

Comments
 (0)