Turnstile renamed some modules and broke compatibility with <7.0, updating.

This commit is contained in:
Suzanne Soy 2021-04-04 15:44:48 +01:00
parent 4a020aaf9c
commit e5d376ab06
2 changed files with 7 additions and 6 deletions

View File

@ -8,8 +8,9 @@ env:
- PATH="$RACKET_DIR/bin:$PATH"
matrix:
# RACKET_VERSION is an argument to install-racket.sh
- RACKET_VERSION=6.8 COV=true
- RACKET_VERSION=6.9 COV=true
#- RACKET_VERSION=6.8 COV=true
#- RACKET_VERSION=6.9 COV=true
- RACKET_VERSION=7.0 COV=true
- RACKET_VERSION=RELEASE COV=true
- RACKET_VERSION=HEAD COV=true
@ -26,4 +27,4 @@ script:
- if $COV; then raco doc-coverage "$(basename "$TRAVIS_BUILD_DIR")" || true; fi ############################# DOC-COVERAGE IS DISABLED WITH || true
- if $COV; then raco cover -s main -s test -s doc -f codecov -f html -d ~/coverage . || true; fi
# TODO: add an option to cover to run the "outer" module too, not just the submodules.
# TODO: deploy the coverage info.
# TODO: deploy the coverage info.

View File

@ -7,7 +7,7 @@
(prefix-in host:
(subtract-in (only-meta-in 1 turnstile/lang)
(only-meta-in 0 turnstile/lang)))
turnstile/examples/mlish))
macrotypes/examples/mlish))
@section{Introduction}
@ -18,9 +18,9 @@ implemented with @turnstile[], and provided as part of @turnstile[]'s suite of
examples.
@chunk[<*>
(extends turnstile/examples/mlish)]
(extends macrotypes/examples/mlish)]
Since @racketmodname[turnstile/examples/mlish] provides some identifiers which
Since @racketmodname[macrotypes/examples/mlish] provides some identifiers which
conflict with some racket utilities, we import those with a prefix.
@chunk[<*>