You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To upgrade the driver, replace the .jar file of your earlier driver with the new `.jar` file. After replacing the `.jar` file, update the CLASSPATH to include the name of the new file. For example, to upgrade to version 1.1.5:
39
+
To upgrade the driver, replace the .jar file of your earlier driver with the new `.jar` file. After replacing the `.jar` file, update the CLASSPATH to include the name of the new file. For example, to upgrade to version 1.1.6:
@@ -52,20 +52,20 @@ You can use [Maven's dependency management](https://central.sonatype.com/search?
52
52
<dependency>
53
53
<groupId>software.aws.rds</groupId>
54
54
<artifactId>aws-mysql-jdbc</artifactId>
55
-
<version>1.1.5</version>
55
+
<version>1.1.6</version>
56
56
</dependency>
57
57
</dependencies>
58
58
```
59
59
60
60
**Upgrading to a newer version with Maven**
61
61
62
-
To upgrade to a newer version of the driver, replace the version number identified in the `pom.xml` file with the newer driver version. For example, to upgrade to version 1.1.5, modify the file to include:
62
+
To upgrade to a newer version of the driver, replace the version number identified in the `pom.xml` file with the newer driver version. For example, to upgrade to version 1.1.6, modify the file to include:
63
63
```xml
64
64
<dependencies>
65
65
<dependency>
66
66
<groupId>software.aws.rds</groupId>
67
67
<artifactId>aws-mysql-jdbc</artifactId>
68
-
<version>1.1.5</version>
68
+
<version>1.1.6</version>
69
69
</dependency>
70
70
</dependencies>
71
71
```
@@ -76,16 +76,16 @@ You can use [Gradle's dependency management](https://central.sonatype.com/search
To upgrade to a newer version of the driver, replace the version number identified in the application's ```build.gradle``` file with the newer driver version. For example, to upgrade to version 1.1.5:
85
+
To upgrade to a newer version of the driver, replace the version number identified in the application's ```build.gradle``` file with the newer driver version. For example, to upgrade to version 1.1.6:
0 commit comments