Skip to content

Commit cd4f258

Browse files
committed
Version Bump
1 parent b98740e commit cd4f258

File tree

6 files changed

+46
-46
lines changed

6 files changed

+46
-46
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ An Android Client for [Constructor.io](http://constructor.io/). [Constructor.io
66

77
## 1. Install
88

9-
Please follow the directions at [Jitpack.io](https://jitpack.io/#Constructor-io/constructorio-client-android/v2.0.0) to add the client to your project.
9+
Please follow the directions at [Jitpack.io](https://jitpack.io/#Constructor-io/constructorio-client-android/v2.1.0) to add the client to your project.
1010

1111
## 2. Retrieve an API key
1212

library/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ android {
2828
targetSdkVersion 28
2929
testInstrumentationRunner "${applicationId}.runner.RxAndroidJUnitRunner"
3030
versionCode 1
31-
versionName '2.0.0'
31+
versionName '2.1.0'
3232
buildConfigField("String", "CLIENT_VERSION", "\"cioand-${versionName}\"")
3333
buildConfigField("String", "DEFAULT_ITEM_SECTION", "\"Products\"")
3434
buildConfigField("String", "SERVICE_URL", "\"ac.cnstrc.com\"")

library/src/test/java/io/constructor/core/ConstructorIoAutocompleteTest.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class ConstructorIoAutocompleteTest {
6161
it.get()!!.isNotEmpty() && it.get()!!.size == 5
6262
}
6363
val request = mockServer.takeRequest()
64-
val path = "/autocomplete/titanic?key=golden-key&i=guido-the-guid&ui=player-one&s=79&c=cioand-2.0.0&_dt="
64+
val path = "/autocomplete/titanic?key=golden-key&i=guido-the-guid&ui=player-one&s=79&c=cioand-2.1.0&_dt="
6565
assert(request.path.startsWith(path))
6666
}
6767

@@ -74,7 +74,7 @@ class ConstructorIoAutocompleteTest {
7474
it.networkError
7575
}
7676
val request = mockServer.takeRequest()
77-
val path = "/autocomplete/titanic?key=golden-key&i=guido-the-guid&ui=player-one&s=79&c=cioand-2.0.0&_dt="
77+
val path = "/autocomplete/titanic?key=golden-key&i=guido-the-guid&ui=player-one&s=79&c=cioand-2.1.0&_dt="
7878
assert(request.path.startsWith(path))
7979
}
8080

@@ -88,7 +88,7 @@ class ConstructorIoAutocompleteTest {
8888
it.isError
8989
}
9090
val request = mockServer.takeRequest()
91-
val path = "/autocomplete/titanic?key=golden-key&i=guido-the-guid&ui=player-one&s=79&c=cioand-2.0.0&_dt="
91+
val path = "/autocomplete/titanic?key=golden-key&i=guido-the-guid&ui=player-one&s=79&c=cioand-2.1.0&_dt="
9292
assert(request.path.startsWith(path))
9393
}
9494

@@ -101,7 +101,7 @@ class ConstructorIoAutocompleteTest {
101101
it.isEmpty
102102
}
103103
val request = mockServer.takeRequest()
104-
val path = "/autocomplete/titanic?key=golden-key&i=guido-the-guid&ui=player-one&s=79&c=cioand-2.0.0&_dt="
104+
val path = "/autocomplete/titanic?key=golden-key&i=guido-the-guid&ui=player-one&s=79&c=cioand-2.1.0&_dt="
105105
assert(request.path.startsWith(path))
106106
}
107107
}

0 commit comments

Comments
 (0)