rules_jvm_external icon indicating copy to clipboard operation
rules_jvm_external copied to clipboard

Create a new release

Open dieend opened this issue 2 years ago • 6 comments

Hello, is there any specific schedule on the release timeline? Last release was 6 months ago, and wondering if we can have a new release. Thank you!

dieend avatar May 04 '22 19:05 dieend

I would also request this, I see 4.2 does not include the kt_jvm_export that was added.

mosmian avatar May 10 '22 22:05 mosmian

This fix would be highly desired in new release as well. Thank you! 👍

ssiarkie avatar May 16 '22 02:05 ssiarkie

Hoping this https://github.com/bazelbuild/rules_jvm_external/pull/695 could also land in the new release 🤞

smocherla-brex avatar May 18 '22 14:05 smocherla-brex

Release schedules have been fairly arbitrary, will take a look!

jin avatar May 24 '22 23:05 jin

Hi @jin, Have you been able to make any progress?

ssiarkie avatar Jul 04 '22 01:07 ssiarkie

For those that are waiting on a new release, you can use rules_jvm_external from HEAD using specific commits.

# Rules JVM External
_RULES_JVM_EXTERNAL_VERSION = "COMMIT_TO_USE_GOES_HERE"

http_archive(
    name = "rules_jvm_external",
    sha256 = "SHA256_FOR_THE_ARCHIVE_GOES_HERE",
    strip_prefix = "rules_jvm_external-{}".format(_RULES_JVM_EXTERNAL_VERSION),
    url = "https://github.com/bazelbuild/rules_jvm_external/archive/{}.zip".format(_RULES_JVM_EXTERNAL_VERSION),
)

Bencodes avatar Aug 08 '22 19:08 Bencodes