Releases: cross-rs/cross
v0.2.5
What's Changed
Fixed
#962 - fix SELinux labels to allow use in multiple containers and/or the host filesystem.
#1166 - freebsd: include memstat in build image to fix build with libc 0.2.138 and up.
#1183 - resolve issue when using pre-build in Cargo.toml
Full Changelog: v0.2.4...v0.2.5
v0.2.4
v0.2.3
[v0.2.3] - 2022-07-09
Added
- #921 - use
CARGO_TERM_VERBOSE
,CARGO_TERM_QUIET
, andCARGO_TERM_COLOR
environment variables for cross terminal output. - #913 - added the
x86_64-unknown-illumos
target. - #910 -
pre-build
can now take a string pointing to a script file to run. - #905 - added
qemu-runner
for musl images, allowing use of native or emulated runners. - #905 - added qemu emulation to
i586-unknown-linux-gnu
,i686-unknown-linux-musl
, andi586-unknown-linux-gnu
, so they can run on anx86
CPU, rather than anx86_64
CPU. - #900 - add the option to skip copying build artifacts back to host when using remote cross via
CROSS_REMOTE_SKIP_BUILD_ARTIFACTS
. - #891 - support custom user namespace overrides by setting the
CROSS_CONTAINER_USER_NAMESPACE
environment variable. - #890 - support rootless docker via the
CROSS_ROOTLESS_CONTAINER_ENGINE
environment variable. - #878 - added an image
ghcr.io/cross-rs/cross
containing cross.
Changed
- #869 - ensure cargo configuration environment variable flags are passed to the docker container.
- #859 - added color diagnostic output and error messages.
Fixed
- #905 - fixed running dynamically-linked libraries for all musl targets except
x86_64-unknown-linux-musl
. - #904 - ensure
cargo metadata
works by using the same channel. - #904 - fixed the path for workspace volumes and passthrough volumes with docker-in-docker.
- #898 - fix the path to the mount root with docker-in-docker if mounting volumes.
- #897 - ensure
target.$(...)
config options overridebuild
ones when parsing strings and vecs. - #895 - convert filenames in docker tags to ASCII lowercase and ignore invalid characters
- #885 - handle symlinks when using remote docker.
- #868 - ignore the
CARGO
environment variable. - #867 - fixed parsing of
build.env.passthrough
config values.
What's Changed
- Fix parsing of config
build.env.passthrough
values. by @Alexhuszagh in #867 - Ignore the
CARGO
environment variable. by @Alexhuszagh in #868 - Pass cargo configuration flags to docker. by @Alexhuszagh in #869
- Minor refactoring in xtask. by @Alexhuszagh in #866
- Add cargo-style output diagnostics. by @Alexhuszagh in #859
- Add unittest to verify Ubuntu base. by @Alexhuszagh in #876
- enable coverage by @Emilgardis in #829
- always run tests by @Emilgardis in #879
- Switch crosstool-ng configure scripts to xtask. by @Alexhuszagh in #877
- Update CI tests to use local cross build. by @Alexhuszagh in #881
- Minor bug fixes. by @Alexhuszagh in #882
- Bug fix for passing verbose, quiet, and color. by @Alexhuszagh in #887
- Enable copying symlinks when using remote docker. by @Alexhuszagh in #885
- add some more context to error messages by @Emilgardis in #884
- Support rootless docker. by @Alexhuszagh in #890
- Add manual overrides for container user namespaces. by @Alexhuszagh in #891
- fix flag and naming of coverage report by @Emilgardis in #892
- Fix tag names for custom docker images. by @Alexhuszagh in #895
- Fix build/target config file ordering by @Alexhuszagh in #897
- Enable skipping of copying build artifacts back to host. by @Alexhuszagh in #900
- Bug fix for mounted paths for docker-in-docker. by @Alexhuszagh in #898
- Various bug fixes for cross. by @Alexhuszagh in #904
- Add integration tests. by @Alexhuszagh in #873
- Numerous bug fixes for musl and other images. by @Alexhuszagh in #905
- Better error diagnostics on targets without std. by @Alexhuszagh in #899
- wiki check toml by @Emilgardis in #907
- Use create_dir_all for cargo directory. by @Alexhuszagh in #908
- Allow verbose output in ct-ng images. by @Alexhuszagh in #909
- Add dockerfile for cross. by @Alexhuszagh in #878
- Structify more of the internals to simplify the implementation. by @Alexhuszagh in #911
- more clippy by @Emilgardis in #915
- Add x86_64-unknown-illumos target. by @Alexhuszagh in #913
- add way to run script with pre-build by @Emilgardis in #910
- Support cargo term variables. by @Alexhuszagh in #921
- use image from main in test for cross dind test by @Emilgardis in #924
- Adds numerous bug fixes for remote cross. by @Alexhuszagh in #922
- fix dind test by @Emilgardis in #925
- fix for real by @Emilgardis in #926
- release version 0.2.3 by @Emilgardis in #923
Full Changelog: v0.2.2...v0.2.3
v0.2.2
After almost two years, cross finally has a new version available!
Major features of this release are:
- Remote container engines support via environment variable
CROSS_REMOTE
. See the wiki - Support for pre-build hooks and automatically building dockerfiles.
- Support configuration from Cargo.toml metadata as well as Cross.toml.
What's next? We've got some breaking changes for v0.3.0, including updating the base Ubuntu versions for our images from 16.04 to 20.04. Although using older glibc versions is great for backwards compatibility, many of us are working on newer codebases where binary compatibility with old glibc versions isn't required, so you can install a more modern toolset from the system package manager.
Added
- #803 - added
CROSS_CUSTOM_TOOLCHAIN
to disable automatic installation of components for use with tools likecargo-bisect-rustc
- #795 - added images for additional toolchains maintained by cross-rs.
- #792 - added
CROSS_CONTAINER_IN_CONTAINER
environment variable to replaceCROSS_DOCKER_IN_DOCKER
. - #785 - added support for remote container engines through data volumes through setting the
CROSS_REMOTE
environment variable. also adds in utility commands to create and remove persistent data volumes. - #782 - added
build-std
config option, which builds the rust standard library from source if enabled. - #678 - Add optional
target.{target}.dockerfile[.file]
,target.{target}.dockerfile.context
andtarget.{target}.dockerfile.build-args
to invoke docker/podman build before using an image. - #678 - Add
target.{target}.pre-build
config for running commands before building the image. - #772 - added
CROSS_CONTAINER_OPTS
environment variable to replaceDOCKER_OPTS
. - #767, #788 - added the
cross-util
andxtask
commands. - #842 - Add
Cargo.toml
as configuration source - #745 - added
thumbv7neon-*
targets. - #741 - added
armv7-unknown-linux-gnueabi
andarmv7-unknown-linux-musleabi
targets. - #721 - add support for running doctests on nightly if
CROSS_UNSTABLE_ENABLE_DOCTESTS=true
. - #719 - add
--list
to known subcommands. - #681 - Warn on unknown fields and confusable targets
- #624 - Add
build.default-target
- #647 - Add
mips64-unknown-linux-muslabi64
andmips64el-unknown-linux-muslabi64
support - #543 - Added environment variables to control the UID and GID in the container
- #524 - docker: Add Nix Store volume support
- Added support for mounting volumes.
- #684 - Enable cargo workspaces to work from any path in the workspace, and make path dependencies mount seamlessly. Also added support for private SSH dependencies.
Changed
- #838 - re-enabled the solaris targets.
- #807 - update Qemu to 6.1.0 on images using Ubuntu 18.04+ with python3.6+.
- #775 - forward Cargo exit code to host
- #762 - re-enabled
x86_64-unknown-dragonfly
target. - #747 - reduced android image sizes.
- #746 - limit image permissions for android images.
- #377 - update WINE versions to 7.0.
- #734 - patch
arm-unknown-linux-gnueabihf
to build for ARMv6, and add architecture for crosstool-ng-based images. - #709 - Update Emscripten targets to
emcc
version 3.1.10 - #707, #708 - Set
BINDGEN_EXTRA_CLANG_ARGS
environment variable to pass sysroot torust-bindgen
- #696 - bump freebsd to 12.3
- #629 - Update Android NDK version and API version
- #497 - don't set RUSTFLAGS in aarch64-musl image
- #492 - Add cmake to FreeBSD images
- #748 - allow definitions in the environment variable passthrough
Fixed
- #836 - write a
CACHEDIR.TAG
when creating the target directory, similar tocargo
. - #804 - allow usage of env
CARGO_BUILD_TARGET
as an alias forCROSS_BUILD_TARGET
- #792 - fixed container-in-container support when using podman.
- #781 - ensure
target.$(...)
config options overridebuild
ones. - #771 - fix parsing of
DOCKER_OPTS
. - #727 - add
PKG_CONFIG_PATH
to all*-linux-gnu
images. - #722 - boolean environment variables are evaluated as truthy or falsey.
- #720 - add android runner to preload
libc++_shared.so
. - #725 - support
CROSS_DEBUG
andCROSS_RUNNER
on android images. - #714 - use host target directory when falling back to host cargo.
- #713 - convert relative target directories to absolute paths.
- #501 (reverted, see #764) - x86_64-linux: lower glibc version requirement to 2.17 (compatible with centos 7)
- #500 - use runner setting specified in Cross.toml
- #498 - bump linux-image version to fix CI
- Re-enabled
powerpc64-unknown-linux-gnu
image - Re-enabled
sparc64-unknown-linux-gnu
image - #582 - Added
libprocstat.so
to FreeBSD images - #665 - when not using env.volumes, mount project in /project
- #494 - Parse Cargo's --manifest-path option to determine mounted docker root
Removed
- #718 - remove deb subcommand.
Internal
- #856 - remove use of external wslpath and create internal helper that properly handles UNC paths.
- #828 - assume paths are Unicode and provide better error messages for path encoding errors.
- #787 - add installer for git hooks.
- #786, #791 - Migrate build script to rust:
cargo build-docker-image $TARGET
- #730 - make FreeBSD builds more resilient.
- #670 - Use serde for deserialization of Cross.toml
- Change rust edition to 2021 and bump MSRV for the cross binary to 1.58.1
- #654 - Use color-eyre for error reporting
- #658 - Upgrade dependencies
- #652 - Allow trying individual targets via bors.
- #650 - Improve Docker caching.
- #609 - Switch to Github Actions and GHCR.
- #588 - fix ci: bump openssl version in freebsd again
- #552 - Added CHANGELOG.md automation
- #534 - fix image builds with update of dependencies
- #502 - fix ci: bump openssl version in freebsd
- #489 - Add support for more hosts and simplify/unify host support checks
- #477 - Fix Docker/Podman links in README
- #476 - Use Rustlang mirror for Sabotage linux tarbals
- Bump nix dependency to
0.22.1
- Bump musl version to 1.1.24.
New Contributors
- @anupdhml made their first contribution in #431
- @adamgreig made their first contribution in #433
- @brainstorm made their first contribution in #452
- @theunkn0wn1 made their first contribution in #454
- @kay made their first contribution in #456
- @oblique made their first contribution in #472
- @jonas-schievink made their first contribution in #476
- @jaredwolff made their first contribution in #467
- @junhochoi made their first contribution in #492
- @olitha made their first contribution in #534
- @UebelAndre made their first contribution in #543
- @alex-berger made their first contribution in #489
- @kpcyrd made their first contribution in #573
- @sudipghimire533 made their first contribution in #575
- @rawkode made their first contribution in #559
- @dtolnay made their first contribution in #560
- @eZanmoto made their first contribution in #505
- @svenstaro made their first contribution in #588
- @blesson3 made their first contribution in #522
- @maximdeclercq made their first contribution in #630
- @anatawa12 made their first contribution in #608
- @sigmaSd made their first contribution in #445
- @tesaguri made their first contribution in #549
- @otavio made their first contribution in #655
- @denisfalqueto made their first contribution in #601
- @abcfy2 made their first contribution in #647
- @mntns made their first contribution in #670
- @zappolowski made their first contribution in #624
- @Jules-Bertholet made their first contribution in #687
- @rtzoeller made their first contribution in #694
- @brandonros made their first contribution in #759
Full Changelog: v0.2.1...v0.2.2
v0.2.2-rc.1
Added
- #803 - added
CROSS_CUSTOM_TOOLCHAIN
to disable automatic installation of components for use with tools likecargo-bisect-rustc
- #795 - added images for additional toolchains maintained by cross-rs.
- #792 - added
CROSS_CONTAINER_IN_CONTAINER
environment variable to replaceCROSS_DOCKER_IN_DOCKER
. - #785 - added support for remote container engines through data volumes through setting the
CROSS_REMOTE
environment variable. also adds in utility commands to create and remove persistent data volumes. - #782 - added
build-std
config option, which builds the rust standard library from source if enabled. - #678 - Add optional
target.{target}.dockerfile[.file]
,target.{target}.dockerfile.context
andtarget.{target}.dockerfile.build-args
to invoke docker/podman build before using an image. - #678 - Add
target.{target}.pre-build
config for running commands before building the image. - #772 - added
CROSS_CONTAINER_OPTS
environment variable to replaceDOCKER_OPTS
. - #767, #788 - added the
cross-util
andxtask
commands. - #842 - Add
Cargo.toml
as configuration source - #745 - added
thumbv7neon-*
targets. - #741 - added
armv7-unknown-linux-gnueabi
andarmv7-unknown-linux-musleabi
targets. - #721 - add support for running doctests on nightly if
CROSS_UNSTABLE_ENABLE_DOCTESTS=true
. - #719 - add
--list
to known subcommands. - #681 - Warn on unknown fields and confusable targets
- #624 - Add
build.default-target
- #647 - Add
mips64-unknown-linux-muslabi64
andmips64el-unknown-linux-muslabi64
support - #543 - Added environment variables to control the UID and GID in the container
- #524 - docker: Add Nix Store volume support
- Added support for mounting volumes.
- #684 - Enable cargo workspaces to work from any path in the workspace, and make path dependencies mount seamlessly. Also added support for private SSH dependencies.
Changed
- #838 - re-enabled the solaris targets.
- #807 - update Qemu to 6.1.0 on images using Ubuntu 18.04+ with python3.6+.
- #775 - forward Cargo exit code to host
- #762 - re-enabled
x86_64-unknown-dragonfly
target. - #747 - reduced android image sizes.
- #746 - limit image permissions for android images.
- #377 - update WINE versions to 7.0.
- #734 - patch
arm-unknown-linux-gnueabihf
to build for ARMv6, and add architecture for crosstool-ng-based images. - #709 - Update Emscripten targets to
emcc
version 3.1.10 - #707, #708 - Set
BINDGEN_EXTRA_CLANG_ARGS
environment variable to pass sysroot torust-bindgen
- #696 - bump freebsd to 12.3
- #629 - Update Android NDK version and API version
- #497 - don't set RUSTFLAGS in aarch64-musl image
- #492 - Add cmake to FreeBSD images
- #748 - allow definitions in the environment variable passthrough
Fixed
- #836 - write a
CACHEDIR.TAG
when creating the target directory, similar tocargo
. - #804 - allow usage of env
CARGO_BUILD_TARGET
as an alias forCROSS_BUILD_TARGET
- #792 - fixed container-in-container support when using podman.
- #781 - ensure
target.$(...)
config options overridebuild
ones. - #771 - fix parsing of
DOCKER_OPTS
. - #727 - add
PKG_CONFIG_PATH
to all*-linux-gnu
images. - #722 - boolean environment variables are evaluated as truthy or falsey.
- #720 - add android runner to preload
libc++_shared.so
. - #725 - support
CROSS_DEBUG
andCROSS_RUNNER
on android images. - #714 - use host target directory when falling back to host cargo.
- #713 - convert relative target directories to absolute paths.
- #501 (reverted, see #764) - x86_64-linux: lower glibc version requirement to 2.17 (compatible with centos 7)
- #500 - use runner setting specified in Cross.toml
- #498 - bump linux-image version to fix CI
- Re-enabled
powerpc64-unknown-linux-gnu
image - Re-enabled
sparc64-unknown-linux-gnu
image - #582 - Added
libprocstat.so
to FreeBSD images - #665 - when not using env.volumes, mount project in /project
- #494 - Parse Cargo's --manifest-path option to determine mounted docker root
Removed
- #718 - remove deb subcommand.
Internal
- #856 - remove use of external wslpath and create internal helper that properly handles UNC paths.
- #828 - assume paths are Unicode and provide better error messages for path encoding errors.
- #787 - add installer for git hooks.
- #786, #791 - Migrate build script to rust:
cargo build-docker-image $TARGET
- #730 - make FreeBSD builds more resilient.
- #670 - Use serde for deserialization of Cross.toml
- Change rust edition to 2021 and bump MSRV for the cross binary to 1.58.1
- #654 - Use color-eyre for error reporting
- #658 - Upgrade dependencies
- #652 - Allow trying individual targets via bors.
- #650 - Improve Docker caching.
- #609 - Switch to Github Actions and GHCR.
- #588 - fix ci: bump openssl version in freebsd again
- #552 - Added CHANGELOG.md automation
- #534 - fix image builds with update of dependencies
- #502 - fix ci: bump openssl version in freebsd
- #489 - Add support for more hosts and simplify/unify host support checks
- #477 - Fix Docker/Podman links in README
- #476 - Use Rustlang mirror for Sabotage linux tarbals
- Bump nix dependency to
0.22.1
- Bump musl version to 1.1.24.
New Contributors
- @anupdhml made their first contribution in #431
- @adamgreig made their first contribution in #433
- @brainstorm made their first contribution in #452
- @theunkn0wn1 made their first contribution in #454
- @kay made their first contribution in #456
- @oblique made their first contribution in #472
- @jonas-schievink made their first contribution in #476
- @jaredwolff made their first contribution in #467
- @junhochoi made their first contribution in #492
- @olitha made their first contribution in #534
- @UebelAndre made their first contribution in #543
- @alex-berger made their first contribution in #489
- @kpcyrd made their first contribution in #573
- @sudipghimire533 made their first contribution in #575
- @rawkode made their first contribution in #559
- @dtolnay made their first contribution in #560
- @eZanmoto made their first contribution in #505
- @svenstaro made their first contribution in #588
- @blesson3 made their first contribution in #522
- @maximdeclercq made their first contribution in #630
- @anatawa12 made their first contribution in #608
- @sigmaSd made their first contribution in #445
- @tesaguri made their first contribution in #549
- @otavio made their first contribution in #655
- @denisfalqueto made their first contribution in #601
- @abcfy2 made their first contribution in #647
- @mntns made their first contribution in #670
- @zappolowski made their first contribution in #624
- @Jules-Bertholet made their first contribution in #687
- @rtzoeller made their first contribution in #694
- @brandonros made their first contribution in #759
Full Changelog: v0.2.1...v0.2.2-rc.1
v0.2.1
Changes:
- a1ca96d Bump version to 0.2.1.
- e05d6a6 Disable
powerpc64
andsparc64
images. - 8a4ad26 Retry in all
curl
calls. - 6126ef0 Update
dropbear
. - 40e13c1 Update docs on xargo usage
- 5528a9c Try to install only available toolchains via rustup
- aeaf3f1 Respect xargo override from toml
- 7d09c5e Merge #424 [ #422 ]
- 843ad77 Prevent pkg-config from being removed in image
- 8a2f734 Merge #421
See More
- 57cb99c Don't pipe keys directly to
apt-key
. - e47bf2a Run ShellCheck on CI.
- 73bcd4d Merge #418
- 3e60c8c Merge #419
- 5315007 Merge #403
- 4d6d987 docker: linux-image: add gnupg to local deps
- 4c214fd Use minimal profile for installing
xargo
. - b5509fc Merge #409
- a4c1f45 Only use
--cache-from
if image was pulled. - 20e6574 Use pre-compiled CMake.
- de91808 Merge #415
- c66a5c6 Use long option --assume-yes in all Dockerfiles
- 29350e5 Merge #413
- f649184 README: use
apt-get --assume-yes
in Dockerfile - a7d6482 ci: powerpc: Allow unauthenticated packages
- 4ad2b63 Add riscvgc-unknown-linux-gnu support
- 5d717f0 Merge #398
- f85bf5f += version information
- 56accbe Do not skip mounts with source == destination for docker-in-docker mode
- bcdb3d3 Merge #392
- 2ddc30f Merge #408 [ lang/highfive#258, lang/triagebot#433 ]
- 9086608 Add triagebot configuration
- eb33fed Merge #371 [ #370 ]
- 8e8615b Merge #387
- f2c70b3 Add support for docker in docker
- 0c0e030 Cleaned up useless Result
- 4730d72 += armv5te-unknown-linux-gnueabi target
- a53e5ed Update
arm-unknown-linux-gnueabihf
. - 47f325a Merge #377
- 684fed5 Merge #393
- 34b4041 Merge #396
- 273e8cc Remove support for
i686-apple-darwin
. - e8b97f3 Disable
x86_64-unknown-dragonfly
. - 1bf2203 Update CMake to 3.16.5.
- 2aa8990 Merge #386 [ #383 ]
- 07dba32 docker: define PKG_CONFIG_ALLOW_CROSS [ #383 ]
- dfa1646 Merge #382
- 6eb558b docs(CHANGELOG): fix version links
- d1b7b46 Pass channel argument to cargo as is
- 84fc0f8 Merge #378
- 486499e Avoid pulling if image already exists locally.
- f45cd9f #370 Support for explicit channel argument
This list of changes was auto generated.
v0.2.0
Changes:
- ba1195e Release 0.2.0
- 0f1941e Merge #375
- 43de95b Update QEMU.
- 35fe762 Update CMake.
- 29069d2 Make
linux-image.sh
easier to maintain. - 4249b8b Merge #366
- 353e93d Update keys.
- 3b07a08 Configure ports.ubuntu.com in APT sources
- c91019c Update PowerPC and Sparc kernels.
- a18f558 Fix Rust installation on CI.
See More
- f1296ab Update PowerPC and Sparc kernels.
- adf100d Build docker images in separate step.
- 2f284ac Merge #363
- c46fdc2 Support
--target-dir
. - e9affc0 Merge #361
- 81bb1b5 Refactor test script.
- 9f91aee Fix unbound variable.
- 94c020c Update emscripten.
- 160517d Allow building multiple images.
- 0c07f3d Fix unbound variable.
- c946cf3 Update arm-unknown-linux-gnueabihf toolchain.
- e61839f Update PowerPC and Sparc kernels.
- 6542a91 Fix empty
purge_list
. - 9993a51 Update CMake.
- 105a4ae Merge #358 [ #357 ]
- 3899c2b create SafeCommand type to not depend on Debug behavior of stdlib Command
- 8abf051 Merge #356
- c4e60af Support
cargo doc
. - 0e73121 Merge #353
- e5c0bda Bump Ubuntu 14.04 to 16.04.
- 9ca1b8a Merge #351
- 24de90e Update kernels.
- aba8c1f Fix unbound variables.
- 69bff31 Remove unused variable.
- aae895b Fail on all errors in Bash scripts.
- a3aeca9 Update
xargo
. - 9687401 Merge #348
- 7676a62 Merge #349
- 2758bb5 Refactor
CommandExt
. - 3d4004c Fix
clippy
warnings. - 61cf771 Update dependencies.
- 13ccb4b Update version to
0.2.0-alpha.1
. - 83778cb Allow writing
Cargo.toml
in project directory. - 4535b6b Merge #344
- 243e21a Simplifying get_container_engine() call
- 91223e4 Removing container_engine option and adding auto-detection
- 42f2410 Adding required Docker version to README and minor changes
- 6c6da37 Adding /cargo/bin volume in Podman and README updates
- f29f612 Merge #345
- b5be2f2 Fix broken link in
emscripten.sh
. - e141449 Adding support for Podman
- d611d31 Merge #339
- b3beb5e Bump kernel versions for ppc64 and sparc64
- 950a141 Fix Android’s CPU features
- 4fb4fc1 Merge #326
- 3e11c60 Refactor Dockerfiles.
- d38d0cf Merge #328
- ea29a50 Merge #329
- cdf3f62 Use
home
crate. - bcad053 Use edition 2018.
- 95a7e1b Fix Windows release.
- 6b85298 Merge #327
- 084f3dc James Munns requested to be removed from CODEOWNERS
- 10834c8 Merge #322
- 139d454 Merge #323
- 33372b0 Remove
node.sh
. - 294dc17 Fix QEMU versions in ReadMe.
- 80230ab Remove OpenSSL.
- c183ee3 Merge #321
This list of changes was auto generated.
v0.1.16
Changes:
- a7b430e Release 0.1.16
- d83cae5 Merge #320
- 01c7eac Merge #318
- 4d19a6f Update OpenSSL.
- 69b8da7 Merge #319
- d64cfb8 Fix cross when stdin is not a TTY
- 74ee823 Default to
native
runner. - fc6d350 Merge #316 [ #313 ]
- a43d540 Merge #317
- 4709ab3 Patch for breaking 32-bit float conversions on ppc (#313).
See More
- 2518c2b Try fully enabling
emscripten
targets again. - 3a790d9 Merge #303
- 2c90bc5 Add support for "x86_64-pc-windows-msvc" on Azure Pipelines.
- 3fa5f1b Merge #312
- caa5b8f Fall back to using
cargo
on the host when no image is found. - c9f7927 Merge #310
- 0ed269f Move disabled Dockerfiles into subdirectory.
- 681b082 Merge #307
- ffa16a5 Merge #309
- 299e25f Use local variables in Bash function.
- f597a9c Fix default runner.
- fca3a05 Merge #305
- d1a2f48 Automatically download
-apple-ios
components on macOS. - ac3ee53 Merge #304
- 9508672 Fix
versioned_image_name
. - 8d82312 Merge #302
- 883453a Merge #301
This list of changes was auto generated.
v0.1.15
Release 0.1.15