forked from agda/agda-stdlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
413 lines (280 loc) · 13.6 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
------------------------------------------------------------------------
-- Release notes for Agda standard library version TODO
------------------------------------------------------------------------
The library has been tested using Agda version TODO.
Note that no guarantees are made about backwards or forwards
compatibility, the library is still at an experimental stage.
If you want to compile the library using the MAlonzo compiler, then
you should first install some supporting Haskell code, for instance as
follows:
cd ffi
cabal install
Currently the library does not support the Epic or JavaScript compiler
backends.
Important changes since 0.11:
* Added support for GHC 8.0.1.
------------------------------------------------------------------------
-- Release notes for Agda standard library version 0.11
------------------------------------------------------------------------
The library has been tested using Agda version 2.4.2.4.
Note that no guarantees are made about backwards or forwards
compatibility, the library is still at an experimental stage.
If you want to compile the library using the MAlonzo compiler, then
you should first install some supporting Haskell code, for instance as
follows:
cd ffi
cabal install
Currently the library does not support the Epic or JavaScript compiler
backends.
Important changes since 0.10:
* Relation.Binary.PropositionalEquality.TrustMe.erase was added.
* Added Data.Nat.Base.{_≤″_,_≥″_,_<″_,_>″_,erase},
Data.Nat.Properties.{≤⇒≤″,≤″⇒≤}, Data.Fin.fromℕ≤″, and
Data.Fin.Properties.fromℕ≤≡fromℕ≤″.
* The functions in Data.Nat.DivMod have been optimised.
* Turned on η-equality for Record.Record, removed Record.Signature′
and Record.Record′.
* Renamed Data/AVL.agda._⊕_sub1 to pred[_⊕_].
------------------------------------------------------------------------
-- Release notes for Agda standard library version 0.10
------------------------------------------------------------------------
The library has been tested using Agda version 2.4.2.3.
Note that no guarantees are made about backwards or forwards
compatibility, the library is still at an experimental stage.
If you want to compile the library using the MAlonzo compiler, then
you should first install some supporting Haskell code, for instance as
follows:
cd ffi
cabal install
Currently the library does not support the Epic or JavaScript compiler
backends.
Important changes since 0.9:
* Renamed Data.Unit.Core to Data.Unit.NonEta
* Removed Data.String.Core.
The module Data.String.Base now contains these definitions.
* Removed Relation.Nullary.Core.
The module Relation.Nullary now contains these definitions directly.
* Inspect on steroids has been simplified (see
Relation.Binary.PropositionalEquality and
Relation.Binary.HeterogeneousEquality).
The old version has been deprecated (see the above modules) and it
will be removed in the next release.
* Using Data.X.Base modules.
The Data.X.Base modules are used for cheaply importing a data type
and the most common definitions. The use of these modules reduce
type-checking and compilation times.
At the moment, the modules added are:
Data.Bool.Base
Data.Char.Base
Data.Integer.Base
Data.List.Base
Data.Maybe.Base
Data.Nat.Base
Data.String.Base
Data.Unit.Base
These modules are also cheap to import and can be considered basic:
Data.BoundedVec.Inefficient
Data.Empty
Data.Product
Data.Sign
Data.Sum
Function
Level
Relation.Binary
Relation.Binary.PropositionalEquality.TrustMe
Relation.Nullary
* Added singleton sets to Relation.Unary.
There used to be an isomorphic definition of singleton sets in
Monad.Predicate, this has been removed and the module has been
cleaned up accordingly.
The singleton set is also used to define generic operations
(Plotkin and Power's terminology) in Data.Container.Indexed.FreeMonad.
* Proved properties of Data.List.gfilter. The following definitions
have been added to Data.List.Properties:
gfilter-just : ... → gfilter just xs ≡ xs
gfilter-nothing : ... → gfilter (λ _ → nothing) xs ≡ []
gfilter-concatMap : ... → gfilter f ≗ concatMap (fromMaybe ∘ f)
* New in Data.Nat.Properties:
<⇒≤pred : ∀ {m n} → m < n → m ≤ pred n
* New in Data.Fin:
strengthen : ∀ {n} (i : Fin n) → Fin′ (suc i)
* New in Data.Fin.Properties:
from-to : ∀ {n} (i : Fin n) → fromℕ (toℕ i) ≡ strengthen i
toℕ-strengthen : ∀ {n} (i : Fin n) → toℕ (strengthen i) ≡ toℕ i
fromℕ-def : ∀ n → fromℕ n ≡ fromℕ≤ ℕ≤-refl
reverse-suc : ∀{n}{i : Fin n} → toℕ (reverse (suc i)) ≡ toℕ (reverse i)
inject≤-refl : ∀ {n} (i : Fin n) (n≤n : n ℕ≤ n) → inject≤ i n≤n ≡ i
* New in Data.List.NonEmpty:
foldr₁ : ∀ {a} {A : Set a} → (A → A → A) → List⁺ A → A
foldl₁ : ∀ {a} {A : Set a} → (A → A → A) → List⁺ A → A
* Data.AVL.Height-invariants._∼_ was replaced by _∼_⊔_, following
Conor McBride's principle of pushing information into indices rather
than pulling information out.
Some lemmas in Data.AVL.Height-invariants (1+, max∼max and
max-lemma) were removed.
The implementations of some functions in Data.AVL were simplified.
This could mean that they, and other functions depending on them (in
Data.AVL, Data.AVL.IndexedMap and Data.AVL.Sets), reduce in a
different way than they used to.
* The fixity of all _∎ and finally operators, as well as
Category.Monad.Partiality.All._⟨_⟩P, was changed from infix 2 to
infix 3.
* The fixity of Category.Monad.Partiality._≟-Kind_, Data.AVL._∈?_,
Data.AVL.IndexedMap._∈?_, Data.AVL.Sets._∈?_, Data.Bool._≟_,
Data.Char._≟_, Data.Float._≟_, Data.Nat._≤?_,
Data.Nat.Divisibility._∣?_, Data.Sign._≟_, Data.String._≟_,
Data.Unit._≟_, Data.Unit._≤?_ and
Data.Vec.Equality.DecidableEquality._≟_ was changed from the default
to infix 4.
* The fixity of all _≟<something>_ operators in Reflection is now
infix 4 (some of them already had this fixity).
* The fixity of Algebra.Operations._×′_ was changed from the default
to infixr 7.
* The fixity of Data.Fin.#_ was changed from the default to infix 10.
* The fixity of Data.Nat.Divisibility.1∣_ and _∣0 was changed from the
default to infix 10.
* The fixity of Data.Nat.DivMod._divMod_, _div_ and _mod_ was changed
from the default to infixl 7.
* The fixity of Data.Product.Σ-syntax was changed from the default to
infix 2.
* The fixity of Relation.Unary._~ was changed from the default to infix
10.
* Turned on η-equality for Record.Record, removed Record.Signature′
and Record.Record′.
------------------------------------------------------------------------
-- Release notes for Agda standard library version 0.9
------------------------------------------------------------------------
The library has been tested using Agda version 2.4.2.1.
Note that no guarantees are made about backwards or forwards
compatibility, the library is still at an experimental stage.
If you want to compile the library using the MAlonzo compiler, then
you should first install some supporting Haskell code, for instance as
follows:
cd ffi
cabal install
Currently the library does not support the Epic or JavaScript compiler
backends.
Important changes since 0.8.1:
* Data.List.NonEmpty
Non-empty lists are no longer defined in terms of Data.Product._×_,
instead, now they are defined as record with fields head and tail.
* Reflection API
** Quoting levels was fixed. This fix could break some code (see
Agda issue 1207).
** The Reflection.type function returns a normalised Reflection.Type
and quoteTerm returns an η-contracted Reflection.Term now. These
changes could break some code (see Agda issue 1269).
** The primitive function for showing names, primShowQName, is now
exposed as Reflection.showName.
* Removed compatibility modules for Props -> Properties rename
Use Foo.Properties.Bar instead of Foo.Props.Bar.
------------------------------------------------------------------------
-- Version 0.8.1
------------------------------------------------------------------------
The library has been tested using Agda version 2.4.2.
Note that no guarantees are made about backwards or forwards
compatibility, the library is still at an experimental stage.
If you want to compile the library using the MAlonzo compiler, then
you should first install some supporting Haskell code, for instance as
follows:
cd ffi
cabal install
Currently the library does not support the Epic or JavaScript compiler
backends.
Important changes since 0.8:
* Reflection API
Agda 2.4.2 added support for literals, function definitions, pattern
matching lambdas and absurd clause/patterns (see Agda release
notes). The new supported entities were added to the Reflection.agda
module.
* Modules renamed
Foo.Props.Bar -> Foo.Properties.Bar
The current compatibility modules Foo.Props.Bar will be removed in
the next release.
------------------------------------------------------------------------
Version 0.8
------------------------------------------------------------------------
Version 0.8 of the standard library has now been released, see
https://wiki.portal.chalmers.se/agda/pmwiki.php?n=Libraries.StandardLibrary.
The library has been tested using Agda version 2.4.0.
Note that no guarantees are made about backwards or forwards
compatibility, the library is still at an experimental stage.
If you want to compile the library using the MAlonzo compiler, then
you should first install some supporting Haskell code, for instance as
follows:
cd ffi
cabal install
Currently the library does not support the Epic or JavaScript compiler
backends.
------------------------------------------------------------------------
Version 0.7
------------------------------------------------------------------------
Version 0.7 of the standard library has now been released, see
https://wiki.portal.chalmers.se/agda/pmwiki.php?n=Libraries.StandardLibrary.
The library has been tested using Agda version 2.3.2.
Note that no guarantees are made about backwards or forwards
compatibility, the library is still at an experimental stage.
If you want to compile the library using the MAlonzo compiler, then
you should first install some supporting Haskell code, for instance as
follows:
cd ffi
cabal install
Currently the library does not support the Epic or JavaScript compiler
backends.
-------------------------------------------------------------------
Version 0.6
------------------------------------------------------------------------
Version 0.6 of the standard library has now been released, see
https://wiki.portal.chalmers.se/agda/pmwiki.php?n=Libraries.StandardLibrary.
The library has been tested using Agda version 2.3.0.
Note that no guarantees are made about backwards or forwards
compatibility, the library is still at an experimental stage.
If you want to compile the library using the MAlonzo compiler, then
you should first install some supporting Haskell code, for instance as
follows:
cd ffi
cabal install
Currently the library does not support the Epic or JavaScript compiler
backends.
------------------------------------------------------------------------
Version 0.5
------------------------------------------------------------------------
Version 0.5 of the standard library has now been released, see
https://wiki.portal.chalmers.se/agda/pmwiki.php?n=Libraries.StandardLibrary.
The library has been tested using Agda version 2.2.10.
Note that no guarantees are made about backwards or forwards
compatibility, the library is still at an experimental stage.
------------------------------------------------------------------------
Version 0.4
------------------------------------------------------------------------
Version 0.4 of the standard library has now been released, see
https://wiki.portal.chalmers.se/agda/pmwiki.php?n=Libraries.StandardLibrary.
The library has been tested using Agda version 2.2.8.
Note that no guarantees are made about backwards or forwards
compatibility, the library is still at an experimental stage.
------------------------------------------------------------------------
Version 0.3
------------------------------------------------------------------------
Version 0.3 of the standard library has now been released, see
https://wiki.portal.chalmers.se/agda/pmwiki.php?n=Libraries.StandardLibrary.
The library has been tested using Agda version 2.2.6.
Note that no guarantees are made about backwards or forwards
compatibility, the library is still at an experimental stage.
------------------------------------------------------------------------
Version 0.2
------------------------------------------------------------------------
Version 0.2 of the "standard" library has now been released, see
https://wiki.portal.chalmers.se/agda/pmwiki.php?n=Libraries.StandardLibrary.
The library has been tested using Agda version 2.2.4.
Note that no guarantees are made about backwards or forwards
compatibility, the library is still at an experimental stage.
Note also that the library sources are now located in the
sub-directory lib-<version>/src of the installation tarball.
------------------------------------------------------------------------
Version 0.1
------------------------------------------------------------------------
Version 0.1 of the "standard" library has now been released, see
https://wiki.portal.chalmers.se/agda/pmwiki.php?n=Libraries.StandardLibrary.
The library has been tested using Agda version 2.2.2.
Note that no guarantees are made about backwards or forwards
compatibility, the library is still at an experimental stage.