Skip to content

Commit 98f7fc6

Browse files
update version from 1.1.3 to 1.1.4 in README.md (#351)
1 parent 9a2eb6e commit 98f7fc6

File tree

1 file changed

+26
-26
lines changed

1 file changed

+26
-26
lines changed

README.md

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -29,18 +29,18 @@ The AWS JDBC Driver for MySQL can be installed from pre-compiled packages that c
2929

3030
**Example - Direct download with wget**
3131
```bash
32-
wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.3/aws-mysql-jdbc-1.1.3.jar
33-
cp aws-mysql-jdbc-1.1.3.jar /home/userx/libs/
34-
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.3.jar
32+
wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.4/aws-mysql-jdbc-1.1.4.jar
33+
cp aws-mysql-jdbc-1.1.4.jar /home/userx/libs/
34+
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.4.jar
3535
```
3636

3737
**Upgrading to a newer version with wget**
3838

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.3:
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.4:
4040
```bash
41-
wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.3/aws-mysql-jdbc-1.1.3.jar
42-
cp aws-mysql-jdbc-1.1.3.jar /home/userx/libs/
43-
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.3.jar
41+
wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.4/aws-mysql-jdbc-1.1.4.jar
42+
cp aws-mysql-jdbc-1.1.4.jar /home/userx/libs/
43+
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.4.jar
4444
```
4545

4646
#### As a Maven dependency
@@ -52,20 +52,20 @@ You can use [Maven's dependency management](https://search.maven.org/search?q=g:
5252
<dependency>
5353
<groupId>software.aws.rds</groupId>
5454
<artifactId>aws-mysql-jdbc</artifactId>
55-
<version>1.1.3</version>
55+
<version>1.1.4</version>
5656
</dependency>
5757
</dependencies>
5858
```
5959

6060
**Upgrading to a newer version with Maven**
6161

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.3, 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.4, modify the file to include:
6363
```xml
6464
<dependencies>
6565
<dependency>
6666
<groupId>software.aws.rds</groupId>
6767
<artifactId>aws-mysql-jdbc</artifactId>
68-
<version>1.1.3</version>
68+
<version>1.1.4</version>
6969
</dependency>
7070
</dependencies>
7171
```
@@ -76,16 +76,16 @@ You can use [Gradle's dependency management](https://search.maven.org/search?q=g
7676
**Example - Gradle**
7777
```gradle
7878
dependencies {
79-
implementation group: 'software.aws.rds', name: 'aws-mysql-jdbc', version: '1.1.3'
79+
implementation group: 'software.aws.rds', name: 'aws-mysql-jdbc', version: '1.1.4'
8080
}
8181
```
8282

8383
**Upgrading to a newer version with Gradle**
8484

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.3:
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.4:
8686
```gradle
8787
dependencies {
88-
implementation group: 'software.aws.rds', name: 'aws-mysql-jdbc', version: '1.1.3'
88+
implementation group: 'software.aws.rds', name: 'aws-mysql-jdbc', version: '1.1.4'
8989
}
9090
```
9191

@@ -95,9 +95,9 @@ To use the driver with an IDE (for example, IntelliJ), download the `.jar` file
9595
**Example - IntelliJ**
9696

9797
```bash
98-
wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.3/aws-mysql-jdbc-1.1.3.jar
99-
cp aws-mysql-jdbc-1.1.3.jar /home/userx/libs/
100-
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.3.jar
98+
wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.4/aws-mysql-jdbc-1.1.4.jar
99+
cp aws-mysql-jdbc-1.1.4.jar /home/userx/libs/
100+
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.4.jar
101101
```
102102

103103
After downloading the `.jar` file and updating the CLASSPATH, add the driver information to your `Project`:
@@ -117,9 +117,9 @@ After downloading the `.jar` file and updating the CLASSPATH, add the driver inf
117117
To upgrade to a newer version of the driver, download the updated driver, and add it to your CLASSPATH:
118118

119119
```bash
120-
wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.3/aws-mysql-jdbc-1.1.3.jar
121-
cp aws-mysql-jdbc-1.1.3.jar /home/userx/libs/
122-
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.3.jar
120+
wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.4/aws-mysql-jdbc-1.1.4.jar
121+
cp aws-mysql-jdbc-1.1.4.jar /home/userx/libs/
122+
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.4.jar
123123
```
124124

125125
Then, follow the steps listed above to update your project to the latest version.
@@ -131,9 +131,9 @@ To use the driver with the DBeaver database client, download the `.jar` file, co
131131
**Example - DBeaver**
132132

133133
```bash
134-
wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.3/aws-mysql-jdbc-1.1.3.jar
135-
cp aws-mysql-jdbc-1.1.3.jar /home/userx/libs/
136-
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.3.jar
134+
wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.4/aws-mysql-jdbc-1.1.4.jar
135+
cp aws-mysql-jdbc-1.1.4.jar /home/userx/libs/
136+
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.4.jar
137137
```
138138

139139
After downloading the .jar file and adding it to your CLASSPATH, add the driver information to the DBeaver client:
@@ -169,9 +169,9 @@ After adding driver information, you can create new connections that use the AWS
169169
To upgrade to a newer version of the driver, download the updated driver, and add it to your CLASSPATH:
170170

171171
```bash
172-
wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.3/aws-mysql-jdbc-1.1.3.jar
173-
cp aws-mysql-jdbc-1.1.3.jar /home/userx/libs/
174-
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.3.jar
172+
wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/1.1.4/aws-mysql-jdbc-1.1.4.jar
173+
cp aws-mysql-jdbc-1.1.4.jar /home/userx/libs/
174+
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-1.1.4.jar
175175
```
176176
Then, follow the steps listed above to update your DBeaver client settings.
177177

@@ -184,7 +184,7 @@ If there is an unreleased feature you would like to try, it may be available in
184184
<dependency>
185185
<groupId>software.aws.rds</groupId>
186186
<artifactId>aws-mysql-jdbc</artifactId>
187-
<version>1.1.3</version>
187+
<version>1.1.4</version>
188188
<scope>system</scope>
189189
<systemPath>path-to-snapshot-jar</systemPath>
190190
</dependency>

0 commit comments

Comments
 (0)