This repository was archived by the owner on Apr 28, 2025. It is now read-only.
Releases: aspect-build/rules_sol
Releases · aspect-build/rules_sol
v0.1.0
WORKSPACE snippet:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "aspect_rules_sol",
sha256 = "4e98a4572cd2c5f9e0a4118be3b8d2f0be148c80779ea9da646d0afabe2d609c",
strip_prefix = "rules_sol-0.1.0",
url = "https://github.com/aspect-build/rules_sol/releases/download/v0.1.0/rules_sol-v0.1.0.tar.gz",
)
######################
# rules_sol setup #
######################
load("@aspect_rules_sol//sol:repositories.bzl", "LATEST_VERSION", "rules_sol_dependencies", "sol_register_toolchains")
# Fetches the rules_sol dependencies.
# If you want to have a different version of some dependency,
# you should fetch it *before* calling this.
# Alternatively, you can skip calling this function, so long as you've
# already fetched all the dependencies.
rules_sol_dependencies()
sol_register_toolchains(
name = "solc",
sol_version = LATEST_VERSION,
)What's Changed
- feat: solc toolchain by @alexeagle in #1
- Run
tools/mirror_releases.shto update tosolcv0.8.9 by @aschlosberg in #2 - chore: publish release artifact by @alexeagle in #4
sol_binarygeneratesremappings.txtcompatible with Forge by @aschlosberg in #3
New Contributors
- @alexeagle made their first contribution in #1
- @aschlosberg made their first contribution in #2
Full Changelog: https://github.com/aspect-build/rules_sol/commits/v0.1.0