Skip to content

Commit

Permalink
chore: Remove unneeded release.yml (#136)
Browse files Browse the repository at this point in the history
release.yml is no longer needed. Superseded by release_draft.yml.
  • Loading branch information
hsuamz committed Nov 18, 2021
1 parent 537e2e4 commit 2bf7207
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 63 deletions.
59 changes: 0 additions & 59 deletions .github/workflows/release.yml

This file was deleted.

8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ The AWS JDBC Driver for MySQL can be installed from pre-compiled packages that c

**Example - Direct Download via wget**
```bash
wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/0.2.0/aws-mysql-jdbc-0.2.0.jar
wget https://github.com/awslabs/aws-mysql-jdbc/releases/download/0.3.0/aws-mysql-jdbc-0.3.0.jar
```

**Example - Adding the Driver to the CLASSPATH**
```bash
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-0.2.0.jar
export CLASSPATH=$CLASSPATH:/home/userx/libs/aws-mysql-jdbc-0.3.0.jar
```

#### As a Maven Dependency
Expand All @@ -53,7 +53,7 @@ You can use [Maven's dependency management](https://search.maven.org/search?q=g:
<dependency>
<groupId>software.aws.rds</groupId>
<artifactId>aws-mysql-jdbc</artifactId>
<version>0.2.0</version>
<version>0.3.0</version>
</dependency>
</dependencies>
```
Expand All @@ -64,7 +64,7 @@ You can use [Gradle's dependency management](https://search.maven.org/search?q=g
**Example - Gradle**
```gradle
dependencies {
implementation group: 'software.aws.rds', name: 'aws-mysql-jdbc', version: '0.2.0'
implementation group: 'software.aws.rds', name: 'aws-mysql-jdbc', version: '0.3.0'
}
```
### Using the AWS JDBC Driver for MySQL
Expand Down

0 comments on commit 2bf7207

Please sign in to comment.