Skip to content

Commit b9ca05e

Browse files
committed
Version bump
1 parent 6e37fc3 commit b9ca05e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
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-
Please follow the directions at [Jitpack.io](https://jitpack.io/#Constructor-io/constructorio-java/v4.4.0) to add the client to your project.
10+
Please follow the directions at [Jitpack.io](https://jitpack.io/#Constructor-io/constructorio-java/v4.5.0) to add the client to your project.
1111

1212
# Testing
1313
Download the repository and run the following commands from `./constructorio-client`

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.4.0</version>
7+
<version>4.5.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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public void makeUrlShouldReturnAUrl() throws Exception {
5151
HttpUrl url = constructor.makeUrl("getitUuuurl");
5252
assertEquals("host is set", url.host(), "ac.cnstrc.com");
5353
assertEquals("protocol is set", url.scheme(), "https");
54-
assertEquals("version is set", url.queryParameter("c"), "ciojava-4.4.0");
54+
assertEquals("version is set", url.queryParameter("c"), "ciojava-4.5.0");
5555
assertEquals("apiKey is set", url.queryParameter("key"), "doinkaKey");
5656
}
5757

@@ -63,7 +63,7 @@ public void makeUrlShouldReturnAUrlWithUserInfo() throws Exception {
6363
HttpUrl url = constructor.makeUrl("getitUuuurl", info);
6464
assertEquals("host is set", url.host(), "ac.cnstrc.com");
6565
assertEquals("protocol is set", url.scheme(), "https");
66-
assertEquals("version is set", url.queryParameter("c"), "ciojava-4.4.0");
66+
assertEquals("version is set", url.queryParameter("c"), "ciojava-4.5.0");
6767
assertEquals("apiKey is set", url.queryParameter("key"), "doinkaKey");
6868
assertEquals("session id is set", url.queryParameter("s"), "2");
6969
assertEquals("user id is set", url.queryParameter("i"), "sideshow bob");
@@ -78,7 +78,7 @@ public void verifyShouldReturnTrueWithValidKeyTokenPair() throws Exception {
7878
@Test
7979
public void getVersionShouldReturnClientVersion() throws Exception {
8080
ConstructorIO constructor = new ConstructorIO("YSOxV00F0Kk2R0KnPQN8", "ZqXaOfXuBWD4s3XzCI1q", true, null);
81-
assertEquals("grabs version from pom.xml", constructor.getVersion(), "ciojava-4.4.0");
81+
assertEquals("grabs version from pom.xml", constructor.getVersion(), "ciojava-4.5.0");
8282
}
8383

8484
@Test

0 commit comments

Comments
 (0)