Skip to content

Commit d1a29da

Browse files
authored
Update to kotlin v1.1.4-3 (#31)
1 parent 9229a41 commit d1a29da

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<table><tr>
2-
<td><img src="https://github.com/pubref/rules_protobuf/blob/master/images/bazel.png" width="120"/></td>
2+
<td><img src="https://bazel.build/images/bazel-icon.svg" width="120"/></td>
33
<td><img src="https://kotlinlang.org/assets/images/open-graph/kotlin_250x250.png" width="120"/></td>
44
</tr><tr>
55
<td>Bazel</td>
@@ -27,7 +27,7 @@ Add the following to your `WORKSPACE` file:
2727
git_repository(
2828
name = "org_pubref_rules_kotlin",
2929
remote = "https://github.com/pubref/rules_kotlin.git",
30-
tag = "v0.3.1", # update as needed
30+
tag = "v0.4.0", # update as needed
3131
)
3232

3333
load("@org_pubref_rules_kotlin//kotlin:rules.bzl", "kotlin_repositories")
@@ -37,11 +37,11 @@ kotlin_repositories()
3737

3838
This will fetch a
3939
[kotlin release](https://github.com/JetBrains/kotlin/releases)
40-
(currently 1.1.2-2) and load a number of dependencies related to
40+
(currently 1.1.4-3) and load a number of dependencies related to
4141
dagger (used to build the `KotlinCompiler` bazel worker).
4242

4343
> You can override kotlin release via the `com_github_jetbrains_kotlin_url`, `com_github_jetbrains_kotlin_sha256` options
44-
> and various dependencies loaded in the `kotlin_repositories` rule via the `omit_*` options;
44+
> and various dependencies loaded in the `kotlin_repositories` rule via the `omit_*` options;
4545
> see the source file for details.
4646
4747
## BUILD rules
@@ -213,8 +213,8 @@ $ bazel test examples/helloworld:main_kt_test
213213

214214
1. Proper `data` and runfiles support.
215215
2. Proper android support.
216-
4. kapt support.
217-
3. Incremental compilation.
216+
3. kapt support.
217+
4. Incremental compilation.
218218

219219
[bazel]: http://www.bazel.io
220220
[kotlin]: http://www.kotlinlang.org

kotlin/kotlin_repositories.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ exports_files(["src"])
3939

4040

4141
def kotlin_repositories(
42-
com_github_jetbrains_kotlin_url = "https://github.com/JetBrains/kotlin/releases/download/v1.1.2-2/kotlin-compiler-1.1.2-2.zip",
43-
com_github_jetbrains_kotlin_sha256 = "57e18528f665675206e88cdc0bd42d1550b10f2508e08035270974d7abec3f2f",
42+
com_github_jetbrains_kotlin_url = "https://github.com/JetBrains/kotlin/releases/download/v1.1.4-3/kotlin-compiler-1.1.4-3.zip",
43+
com_github_jetbrains_kotlin_sha256 = "f4ceab8a21ad26a25712a1499999a726cea918be7bec022937f9ae5ca0c943ea",
4444
omit_com_github_jetbrains_kotlin = False,
4545
#omit_com_google_protobuf = False,
4646
#omit_com_google_protobuf_java = False,

0 commit comments

Comments
 (0)