Skip to content

Commit

Permalink
Update dependencies (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbaldwin-rs authored Mar 8, 2024
1 parent 8c49763 commit 00f48d9
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,6 @@ target/

# binaries
bin/

# secrets
.envrc
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Rockset Java Client Changelog

## v0.12.1 2024-03-7
- Update dependencies

## v0.12.0 2024-01-15
- Add ScheduledQueryLambda support

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.rockset</groupId>
<artifactId>rockset-java</artifactId>
<version>0.10.3</version>
<version>...</version>
</dependency>
```

Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>rockset-java</artifactId>
<packaging>jar</packaging>
<name>Rockset Java</name>
<version>0.12.0-SNAPSHOT</version>
<version>0.12.1</version>
<url>https://github.com/rockset/rockset-java-client</url>
<description>The official Rockset Java client library</description>
<scm>
Expand Down Expand Up @@ -284,7 +284,7 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>31.1-jre</version>
<version>33.0.0-jre</version>
</dependency>
<dependency>
<groupId>io.gsonfire</groupId>
Expand Down Expand Up @@ -321,7 +321,7 @@
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.14.2</version>
<version>7.5.1</version>
<exclusions>
<exclusion>
<groupId>junit</groupId>
Expand Down
1 change: 1 addition & 0 deletions src/test/java/com/rockset/jdbc/FirstExample.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import java.sql.SQLException;
import java.sql.Statement;
import java.util.Properties;

import org.testng.Assert;
import org.testng.annotations.BeforeSuite;
import org.testng.annotations.Test;
Expand Down

0 comments on commit 00f48d9

Please sign in to comment.