Skip to content

Commit a14b9ef

Browse files
committed
Version Bump
1 parent 31a17a6 commit a14b9ef

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
For the most up-to-date documentation for this library, please visit our [API Documentation](https://docs.constructor.io/rest-api.html?java).
88

99
# Installation
10-
1. Follow the directions at [Jitpack.io](https://jitpack.io/#Constructor-io/constructorio-java/v4.7.2) to add the client to your project.
10+
1. Follow the directions at [Jitpack.io](https://jitpack.io/#Constructor-io/constructorio-java/v4.8.0) to add the client to your project.
1111
2. Retrieve your autocomplete token and key. You can find this at your [Constructor.io dashboard](https://constructor.io/dashboard).
1212
3. Create a new instance of the client.
1313
```java

constructorio-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>io.constructor.client</groupId>
55
<artifactId>constructorio-client</artifactId>
66
<packaging>jar</packaging>
7-
<version>4.7.2</version>
7+
<version>4.8.0</version>
88
<name>constructorio-client</name>
99
<url>https://github.com/Constructor-io/constructorio-java</url>
1010
<dependencies>

constructorio-client/src/test/java/io/constructor/client/ConstructorIOBasicTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public void makeUrlShouldReturnAUrl() throws Exception {
5050
HttpUrl url = constructor.makeUrl("getitUuuurl");
5151
assertEquals("host is set", url.host(), "ac.cnstrc.com");
5252
assertEquals("protocol is set", url.scheme(), "https");
53-
assertEquals("version is set", url.queryParameter("c"), "ciojava-4.7.2");
53+
assertEquals("version is set", url.queryParameter("c"), "ciojava-4.8.0");
5454
assertEquals("apiKey is set", url.queryParameter("key"), "doinkaKey");
5555
}
5656

@@ -62,7 +62,7 @@ public void makeUrlShouldReturnAUrlWithUserInfo() throws Exception {
6262
HttpUrl url = constructor.makeUrl("getitUuuurl", info);
6363
assertEquals("host is set", url.host(), "ac.cnstrc.com");
6464
assertEquals("protocol is set", url.scheme(), "https");
65-
assertEquals("version is set", url.queryParameter("c"), "ciojava-4.7.2");
65+
assertEquals("version is set", url.queryParameter("c"), "ciojava-4.8.0");
6666
assertEquals("apiKey is set", url.queryParameter("key"), "doinkaKey");
6767
assertEquals("session id is set", url.queryParameter("s"), "2");
6868
assertEquals("client id is set", url.queryParameter("i"), "sideshow bob");
@@ -76,7 +76,7 @@ public void makeUrlWithoutUserIdShouldReturnAUrlWithUserInfo() throws Exception
7676
HttpUrl url = constructor.makeUrl("getitUuuurl", info);
7777
assertEquals("host is set", url.host(), "ac.cnstrc.com");
7878
assertEquals("protocol is set", url.scheme(), "https");
79-
assertEquals("version is set", url.queryParameter("c"), "ciojava-4.7.2");
79+
assertEquals("version is set", url.queryParameter("c"), "ciojava-4.8.0");
8080
assertEquals("apiKey is set", url.queryParameter("key"), "doinkaKey");
8181
assertEquals("session id is set", url.queryParameter("s"), "2");
8282
assertEquals("client id is set", url.queryParameter("i"), "sideshow bob");
@@ -92,7 +92,7 @@ public void verifyShouldReturnTrueWithValidKeyTokenPair() throws Exception {
9292
@Test
9393
public void getVersionShouldReturnClientVersion() throws Exception {
9494
ConstructorIO constructor = new ConstructorIO("YSOxV00F0Kk2R0KnPQN8", "ZqXaOfXuBWD4s3XzCI1q", true, null);
95-
assertEquals("grabs version from pom.xml", constructor.getVersion(), "ciojava-4.7.2");
95+
assertEquals("grabs version from pom.xml", constructor.getVersion(), "ciojava-4.8.0");
9696
}
9797

9898
@Test

0 commit comments

Comments
 (0)