Skip to content

Commit e5acd42

Browse files
committed
Version Bump
1 parent 7f0222c commit e5acd42

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/v1.3.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.0.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 '1.3.0'
31+
versionName '2.0.0'
3232
buildConfigField("String", "CLIENT_VERSION", "\"cioand-${versionName}\"")
3333
buildConfigField("String", "AUTOCOMPLETE_SECTION", "\"Products\"")
3434
buildConfigField("String", "BASE_API_URL", "\"https://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
@@ -54,7 +54,7 @@ class ConstructorIoAutocompleteTest {
5454
it.get()!!.isNotEmpty() && it.get()!!.size == 5
5555
}
5656
val request = mockServer.takeRequest()
57-
val path = "/autocomplete/titanic?key=golden-key&i=guido-the-guid&ui=player-one&s=79&c=cioand-1.3.0&_dt="
57+
val path = "/autocomplete/titanic?key=golden-key&i=guido-the-guid&ui=player-one&s=79&c=cioand-2.0.0&_dt="
5858
assert(request.path.startsWith(path))
5959
}
6060

@@ -67,7 +67,7 @@ class ConstructorIoAutocompleteTest {
6767
it.networkError
6868
}
6969
val request = mockServer.takeRequest()
70-
val path = "/autocomplete/titanic?key=golden-key&i=guido-the-guid&ui=player-one&s=79&c=cioand-1.3.0&_dt="
70+
val path = "/autocomplete/titanic?key=golden-key&i=guido-the-guid&ui=player-one&s=79&c=cioand-2.0.0&_dt="
7171
assert(request.path.startsWith(path))
7272
}
7373

@@ -81,7 +81,7 @@ class ConstructorIoAutocompleteTest {
8181
it.isError
8282
}
8383
val request = mockServer.takeRequest()
84-
val path = "/autocomplete/titanic?key=golden-key&i=guido-the-guid&ui=player-one&s=79&c=cioand-1.3.0&_dt="
84+
val path = "/autocomplete/titanic?key=golden-key&i=guido-the-guid&ui=player-one&s=79&c=cioand-2.0.0&_dt="
8585
assert(request.path.startsWith(path))
8686
}
8787

@@ -94,7 +94,7 @@ class ConstructorIoAutocompleteTest {
9494
it.isEmpty
9595
}
9696
val request = mockServer.takeRequest()
97-
val path = "/autocomplete/titanic?key=golden-key&i=guido-the-guid&ui=player-one&s=79&c=cioand-1.3.0&_dt="
97+
val path = "/autocomplete/titanic?key=golden-key&i=guido-the-guid&ui=player-one&s=79&c=cioand-2.0.0&_dt="
9898
assert(request.path.startsWith(path))
9999
}
100100
}

0 commit comments

Comments
 (0)