Skip to content

Commit 6ce46df

Browse files
Merge branch 'master' into experimental
2 parents 6a51764 + 2d38f31 commit 6ce46df

File tree

133 files changed

+5989
-2024
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

133 files changed

+5989
-2024
lines changed

.travis.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ install:
5757
cp -a $HOME/.ghc $HOME/.cabsnap/ghc;
5858
cp -a $HOME/.cabal/lib $HOME/.cabal/share $HOME/.cabal/bin $HOME/installplan.txt $HOME/.cabsnap/;
5959
# installing fix-agda-whitespace
60-
- cd src/fix-agda-whitespace
61-
- cabal install fix-agda-whitespace.cabal
62-
- cd ../../..
63-
- yes | rm -R agda/
64-
- cd agda-stdlib
60+
- git clone https://github.com/agda/fix-whitespace --depth=1
61+
- cd fix-whitespace
62+
- cabal install fix-whitespace.cabal
63+
- cd -
64+
- yes | rm -R fix-whitespace/
6565
# generating Everything.agda
6666
- cabal install lib.cabal
6767
- runghc GenerateEverything.hs
@@ -75,7 +75,7 @@ script:
7575
# generating index.agda
7676
- ./index.sh
7777
# detecting whitespace violations
78-
- make check-whitespace
78+
- fix-whitespace --check
7979
# expose the value of RTS_OPTIONS
8080
- echo $RTS_OPTIONS
8181
# checking safe modules build with --safe

CHANGELOG.md

Lines changed: 375 additions & 706 deletions
Large diffs are not rendered by default.

CHANGELOG/v1.1.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ Bug-fixes
4242
`_<′_` as do all the old proofs, e.g. `+-monoˡ-<` has become `+-monoˡ-<′`,
4343
but these have all been deprecated and may be removed in some future version.
4444

45+
* Migrating code might require lemmas relating `m < n` and `m <′ n`/`suc m ≤ n`;
46+
such lemmas have unfortunately only been added in 1.3.
47+
4548
#### Fixed wrong queries being exported by `Data.Rational`
4649

4750
* `Data.Rational` previously accidently exported queries from `Data.Nat.Base`

0 commit comments

Comments
 (0)