Skip to content

Commit

Permalink
Updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
oyeliseiev-ua committed Jan 8, 2025
1 parent d3be03f commit 01b742a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ jobs:
path: target/surefire-reports
- store_artifacts: # store the jar as an artifact
# Upload test summary for display in Artifacts: https://circleci.com/docs/2.0/artifacts/
path: target/singlestore-jdbc-client-1.2.7-beta0.jar
path: target/singlestore-jdbc-client-1.2.7.jar
- store_artifacts:
path: target/singlestore-jdbc-client-1.2.7-beta0-browser-sso-uber.jar
path: target/singlestore-jdbc-client-1.2.7-browser-sso-uber.jar
# See https://circleci.com/docs/2.0/deployment-integrations/ for deploy examples
test_jdk:
parameters:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SingleStore JDBC Driver

## Version: 1.2.7-beta0
## Version: 1.2.7

SingleStore JDBC Driver is a JDBC 4.2 compatible driver, used to connect applications developed in Java to SingleStore and MySQL databases. SingleStore JDBC Driver is LGPL licensed.

Expand All @@ -18,7 +18,7 @@ The driver (jar) can be downloaded from maven :
<dependency>
<groupId>com.singlestore</groupId>
<artifactId>singlestore-jdbc-client</artifactId>
<version>1.2.6</version>
<version>1.2.7</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<artifactId>singlestore-jdbc-client</artifactId>
<packaging>jar</packaging>
<name>singlestore-jdbc-client</name>
<version>1.2.7-beta0</version>
<version>1.2.7</version>
<description>SingleStore JDBC Driver</description>
<url>https://github.com/memsql/S2-JDBC-Connector</url>

Expand Down Expand Up @@ -55,7 +55,7 @@
<url>git://[email protected]:memsql/S2-JDBC-Connector.git</url>
<connection>scm:git:[email protected]:memsql/S2-JDBC-Connector.git</connection>
<developerConnection>scm:git:[email protected]:memsql/S2-JDBC-Connector.git</developerConnection>
<tag>singlestore-jdbc-client-1.2.7-beta0</tag>
<tag>singlestore-jdbc-client-1.2.7</tag>
</scm>

<distributionManagement>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/singlestore/jdbc/Configuration.java
Original file line number Diff line number Diff line change
Expand Up @@ -2408,7 +2408,7 @@ public Builder vectorTypeOutputFormat(String vectorTypeOutputFormat) {
}

/**
* Enable extended metadata for VECTOR(<N> [ , <elementType> ]) data type.
* Enable extended metadata for {@code VECTOR(<N> [, <elementType>])} data type.
*
* @param vectorExtendedMetadata to enable extended metadata for VECTOR
* @return this {@link Builder}
Expand Down

0 comments on commit 01b742a

Please sign in to comment.