Releases: bzlparty/rules_pandoc
Releases · bzlparty/rules_pandoc
v0.2.0
Using Bzlmod with Bazel 6
- Enable with
common --enable_bzlmod
in.bazelrc
. - Add to your
MODULE.bazel
file:
bazel_dep(name = "mgred_rules_pandoc", version = "0.2.0")
Using WORKSPACE
Paste this snippet into your file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "mgred_rules_pandoc",
sha256 = "0ee76dc7403d40de7946e6b884f3e868e72f2d7ba172edfc828bfb50fd5baf04",
strip_prefix = "rules_pandoc-0.2.0",
url = "https://github.com/mgred/rules_pandoc/releases/download/v0.2.0/rules_pandoc-v0.2.0.tar.gz",
)
######################
# rules_pandoc setup #
######################
# Fetches the rules_pandoc 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.
load("@mgred_rules_pandoc//pandoc:repositories.bzl", "rules_pandoc_dependencies", "pandoc_register_toolchains", "LATEST_PANDOC_VERSION")
rules_pandoc_dependencies()
pandoc_register_toolchains(
name = "pandoc3_1",
pandoc_version = LATEST_PANDOC_VERSION,
)
Full Changelog: v0.1.0...v0.2.0
v0.1.0
Using Bzlmod with Bazel 6
- Enable with
common --enable_bzlmod
in.bazelrc
. - Add to your
MODULE.bazel
file:
bazel_dep(name = "mgred_rules_pandoc", version = "0.1.0")
Using WORKSPACE
Paste this snippet into your file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "mgred_rules_pandoc",
sha256 = "33a16166528baf40832632a1803e9089510f32c47c8fe2d2f92f9ed30b9e298e",
strip_prefix = "rules_pandoc-0.1.0",
url = "https://github.com/mgred/rules_pandoc/releases/download/v0.1.0/rules_pandoc-v0.1.0.tar.gz",
)
######################
# rules_pandoc setup #
######################
# Fetches the rules_pandoc 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.
load("@mgred_rules_pandoc//pandoc:repositories.bzl", "rules_pandoc_dependencies", "pandoc_register_toolchains", "LATEST_PANDOC_VERSION")
rules_pandoc_dependencies()
pandoc_register_toolchains(
name = "pandoc3_1",
pandoc_version = LATEST_PANDOC_VERSION,
)
Full Changelog: v0.0.2...v0.1.0
v0.0.2
Using Bzlmod with Bazel 6
- Enable with
common --enable_bzlmod
in.bazelrc
. - Add to your
MODULE.bazel
file:
bazel_dep(name = "mgred_rules_pandoc", version = "0.0.2")
Using WORKSPACE
Paste this snippet into your file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "mgred_rules_pandoc",
sha256 = "0c1f3f27a982b5ffbc2cca74d7062d43fea70a234587165b7b211bd2f6c5d6bc",
strip_prefix = "rules_pandoc-0.0.2",
url = "https://github.com/mgred/rules_pandoc/releases/download/v0.0.2/rules_pandoc-v0.0.2.tar.gz",
)
######################
# rules_pandoc setup #
######################
# Fetches the rules_pandoc 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.
load("@mgred_rules_pandoc//pandoc:repositories.bzl", "rules_pandoc_dependencies", "pandoc_register_toolchains", "LATEST_PANDOC_VERSION")
rules_pandoc_dependencies()
pandoc_register_toolchains(
name = "pandoc3_1",
pandoc_version = LATEST_PANDOC_VERSION,
)
Full Changelog: v0.0.1...v0.0.2
v0.0.1
Using Bzlmod with Bazel 6
- Enable with
common --enable_bzlmod
in.bazelrc
. - Add to your
MODULE.bazel
file:
bazel_dep(name = "mgred_rules_pandoc", version = "0.0.1")
Using WORKSPACE
Paste this snippet into your file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "mgred_rules_pandoc",
sha256 = "f71cf1d590166f66dfd3670443108f1e73666393ccecee4bed62065b62d75994",
strip_prefix = "rules_pandoc-0.0.1",
url = "https://github.com/mgred/rules_pandoc/releases/download/v0.0.1/rules_pandoc-v0.0.1.tar.gz",
)
######################
# rules_pandoc setup #
######################
# Fetches the rules_pandoc 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.
load("@mgred_rules_pandoc//pandoc:repositories.bzl", "rules_pandoc_dependencies", "pandoc_register_toolchains", "LATEST_PANDOC_VERSION")
rules_pandoc_dependencies()
pandoc_register_toolchains(
name = "pandoc3_1",
pandoc_version = LATEST_PANDOC_VERSION,
)
Full Changelog: v0.0.0...v0.0.1