Skip to content

Commit 02716eb

Browse files
committed
fixing #35 and aligning version
1 parent e2f3482 commit 02716eb

File tree

7 files changed

+7
-9
lines changed

7 files changed

+7
-9
lines changed

astra-db-java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>com.datastax.astra</groupId>
1010
<artifactId>astra-db-java-parent</artifactId>
11-
<version>2.0.1-PREVIEW-SNAPSHOT</version>
11+
<version>2.0.0-PREVIEW1-SNAPSHOT</version>
1212
</parent>
1313

1414
<properties>

astra-db-java/src/main/java/com/datastax/astra/client/tables/Table.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -608,7 +608,7 @@ public <R> Optional<R> findOne(Filter filter, TableFindOneOptions findOneOptions
608608
if (data == null || data.getDocument() == null) {
609609
return Optional.empty();
610610
}
611-
611+
612612
// Document -> Row
613613
Row row = new Row();
614614
row.getColumnMap().putAll(data.getDocument().getDocumentMap());

cassio-cql/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.datastax.astra</groupId>
99
<artifactId>astra-db-java-parent</artifactId>
10-
<version>2.0.0-SNAPSHOT</version>
10+
<version>2.0.0-PREVIEW1-SNAPSHOT</version>
1111
</parent>
1212

1313
<properties>

examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>com.datastax.astra</groupId>
1010
<artifactId>astra-db-java-parent</artifactId>
11-
<version>2.0.0-SNAPSHOT</version>
11+
<version>2.0.0-PREVIEW1-SNAPSHOT</version>
1212
</parent>
1313

1414
<dependencies>

langchain4j-astradb/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>com.datastax.astra</groupId>
1010
<artifactId>astra-db-java-parent</artifactId>
11-
<version>2.0.1-PREVIEW-SNAPSHOT</version>
11+
<version>2.0.0-PREVIEW1-SNAPSHOT</version>
1212
</parent>
1313

1414
<properties>

pom.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.datastax.astra</groupId>
55
<artifactId>astra-db-java-parent</artifactId>
66
<name>Data API Client</name>
7-
<version>2.0.1-PREVIEW-SNAPSHOT</version>
7+
<version>2.0.0-PREVIEW1-SNAPSHOT</version>
88
<packaging>pom</packaging>
99
<url>https://github.com/datastax/astra-db-java</url>
1010
<inceptionYear>2024</inceptionYear>
@@ -13,11 +13,9 @@
1313
<modules>
1414
<module>astra-db-java</module>
1515
<module>langchain4j-astradb</module>
16-
<!--
1716
<module>cassio-cql</module>
1817
<module>tools</module>
1918
<module>examples</module>
20-
-->
2119
</modules>
2220

2321
<properties>

tools/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.datastax.astra</groupId>
99
<artifactId>astra-db-java-parent</artifactId>
10-
<version>2.0.0-SNAPSHOT</version>
10+
<version>2.0.0-PREVIEW1-SNAPSHOT</version>
1111
</parent>
1212

1313
<dependencies>

0 commit comments

Comments
 (0)