Releases: helly25/bzl
Releases · helly25/bzl
0.3.0
Version 0.3.0
Changelog
- Added
skip_build
parameter to control whether comparisons adhere to Semver-10. - [BC] Changed
version.parse
andversion.compare
to take parametererror
as a keyword only parameter.
For Bazel WORKSPACE
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "helly25_bzl",
url = "https://github.com/helly25/bzl/releases/download/0.3.0/bzl-0.3.0.tar.gz",
sha256 = "3f1c99c6cf231691000f840acad0a45c7a7a6f6e3e126df96173e279ce2fcce5",
strip_prefix = "bzl-0.3.0",
)
For Bazel MODULES.bazel
bazel_dep(name = "helly25_bzl", version = "0.3.0")
0.2.1
Version 0.2.1
Changelog
- Improved support for mixed type comparisons.
For Bazel WORKSPACE
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "helly25_bzl",
url = "https://github.com/helly25/bzl/releases/download/0.2.1/bzl-0.2.1.tar.gz",
sha256 = "fcab8753054908f2e574de41a66783fcc3a824dfc9cd82306d31aabf9b2216dd",
)
For Bazel MODULES.bazel
bazel_dep(name = "helly25_bzl", version = "0.2.1")
What's Changed
- Improved support for mixed type comparisons. by @helly25 in #12
- Fixed some edge cases. by @helly25 in #13
Full Changelog: 0.2.0...0.2.1
0.2.0
Version 0.2.0
Changelog
- Added support for parsing out 'pre_release' and 'build' components.
- Added
versions.compare
. - Added 'pre_release' and 'build' support for comparisons.
- Added CI run for Windows (may be dropped at any future point).
For Bazel WORKSPACE
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "helly25_bzl",
url = "https://github.com/helly25/bzl/releases/download/0.2.0/bzl-0.2.0.tar.gz",
sha256 = "5bf0df7d117afd8e6b3b18d4cde7cb9e89a1c6100ff6957ae2401db3c2c4da3e",
)
For Bazel MODULES.bazel
bazel_dep(name = "helly25_bzl", version = "0.2.0")
What's Changed
- Fix some broken file headers by @helly25 in #5
- Parse pre_release and build components. by @helly25 in #6
- Added versions.compare by @helly25 in #7
- Added 'pre_release' and 'build' support for comparisons. by @helly25 in #8
- Test on windows. by @helly25 in #9
- Bump version to 0.2.1 by @helly25 in #10
- Sky-lib cannot be a dev_dependency by @helly25 in #11
Full Changelog: 0.1.2...0.2.0
0.1.2
Version 0.1.2
Changelog
- Fixed workspace file to work for transitive repos.
For Bazel WORKSPACE
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "helly25_bzl",
url = "https://github.com/helly25/bzl/releases/download/0.1.2/bzl-0.1.2.tar.gz",
sha256 = "404f8473bcaad2e370752e57d274d2093eb87ca94cb9a597c1a3553b76743206",
)
For Bazel MODULES.bazel
bazel_dep(name = "helly25_bzl", version = "0.1.2")
What's Changed
- Add more tests and typing. by @helly25 in #1
- Rename mbo_bzl to bzl by @helly25 in #2
- Fixed some naming issues and remove mbo references. by @helly25 in #3
- Fixed workspace file to work for transitive repos. by @helly25 in #4
New Contributors
Full Changelog: https://github.com/helly25/bzl/commits/0.1.2
0.1.1
Version 0.1.1
Changelog
- Fixed some naming issues and remove mbo references.
For Bazel WORKSPACE
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "helly25_bzl",
url = "https://github.com/helly25/bzl/releases/download/0.1.1/bzl-0.1.1.tar.gz",
sha256 = "340c6f93dd11d274756b856a85d1dcdfe39b9c81986fb1a95ee36b6c7b680e3c",
)
For Bazel MODULES.bazel
bazel_dep(name = "helly25_bzl", version = "0.1.1")
What's Changed
Full Changelog: https://github.com/helly25/bzl/commits/0.1.1
0.1.0
Version 0.1.0
Changelog
Initial version.
For Bazel WORKSPACE
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "helly25_bzl",
url = "https://github.com/helly25/bzl/releases/download/0.1.0/bzl-0.1.0.tar.gz",
sha256 = "b70b59af3eeb568d1c1b71314d1021ea775371d0949e470952d2b6df20ba0ee0",
)
What's Changed
Full Changelog: https://github.com/helly25/bzl/commits/0.1.0