Skip to content

Commit

Permalink
Bump to 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
garyp committed Nov 8, 2019
1 parent 27f505d commit adc089d
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ Then the dependency can be added for JVM libraries:

```
dependencies {
compile 'com.github.streem.pb-and-k:pbandk-runtime-jvm:0.5.0'
compile 'com.github.streem.pb-and-k:pbandk-runtime-jvm:0.5.1'
}
```

Expand All @@ -196,7 +196,7 @@ runtime:

```
dependencies {
compileOnly 'com.github.streem.pb-and-k:protoc-gen-kotlin-jvm:0.5.0'
compileOnly 'com.github.streem.pb-and-k:protoc-gen-kotlin-jvm:0.5.1'
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ buildscript {

allprojects {
group 'com.github.streem.pb-and-k'
version '0.5.0'
version '0.5.1'

repositories {
mavenCentral()
Expand Down
4 changes: 2 additions & 2 deletions examples/browser-js/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ repositories {

dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-js:$kotlin_version"
compile 'com.github.streem.pb-and-k:pbandk-runtime-js:0.5.0'
compile 'com.github.streem.pb-and-k:pbandk-runtime-js:0.5.1'
// This is needed for includes, ref: https://github.com/google/protobuf-gradle-plugin/issues/41#issuecomment-143884188
compileOnly 'com.google.protobuf:protobuf-java:3.6.1'
}
Expand Down Expand Up @@ -58,7 +58,7 @@ protobuf {
}
plugins {
kotlin {
artifact = 'com.github.streem.pb-and-k:protoc-gen-kotlin-jvm:0.5.0:jvm8@jar'
artifact = 'com.github.streem.pb-and-k:protoc-gen-kotlin-jvm:0.5.1:jvm8@jar'
}
}
generateProtoTasks {
Expand Down
8 changes: 4 additions & 4 deletions examples/custom-service-gen/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ project(':application') {
applicationName = 'greeter'

dependencies {
compile 'com.github.streem.pb-and-k:pbandk-runtime-jvm:0.5.0'
compile 'com.github.streem.pb-and-k:pbandk-runtime-jvm:0.5.1'
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.1.0'
}

Expand All @@ -38,7 +38,7 @@ project(':application') {
}
plugins {
kotlin {
artifact = 'com.github.streem.pb-and-k:protoc-gen-kotlin-jvm:0.5.0:jvm8@jar'
artifact = 'com.github.streem.pb-and-k:protoc-gen-kotlin-jvm:0.5.1:jvm8@jar'
}
}
generateProtoTasks {
Expand All @@ -61,7 +61,7 @@ project(':application') {

project(':generator') {
dependencies {
compileOnly 'com.github.streem.pb-and-k:pbandk-runtime-jvm:0.5.0'
compileOnly 'com.github.streem.pb-and-k:protoc-gen-kotlin-jvm:0.5.0'
compileOnly 'com.github.streem.pb-and-k:pbandk-runtime-jvm:0.5.1'
compileOnly 'com.github.streem.pb-and-k:protoc-gen-kotlin-jvm:0.5.1'
}
}
4 changes: 2 additions & 2 deletions examples/gradle-and-jvm/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ mainClassName = 'pbandk.examples.addressbook.MainKt'
applicationName = 'addressbook'

dependencies {
compile 'com.github.streem.pb-and-k:pbandk-runtime-jvm:0.5.0'
compile 'com.github.streem.pb-and-k:pbandk-runtime-jvm:0.5.1'
}

compileJava.enabled = false
Expand All @@ -33,7 +33,7 @@ protobuf {
}
plugins {
kotlin {
artifact = 'com.github.streem.pb-and-k:protoc-gen-kotlin-jvm:0.5.0:jvm8@jar'
artifact = 'com.github.streem.pb-and-k:protoc-gen-kotlin-jvm:0.5.1:jvm8@jar'
}
}
generateProtoTasks {
Expand Down

0 comments on commit adc089d

Please sign in to comment.