Skip to content
This repository has been archived by the owner on May 18, 2021. It is now read-only.

Commit

Permalink
Update to MySQL 8.0.15
Browse files Browse the repository at this point in the history
  • Loading branch information
electrum committed Apr 2, 2019
1 parent 02fad43 commit 3bb8b01
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</parent>

<artifactId>testing-mysql-server</artifactId>
<version>8.0.12-4-SNAPSHOT</version>
<version>8.0.15-1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>testing-mysql-server</name>
Expand Down
4 changes: 2 additions & 2 deletions repack-mysql.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

set -eu

VERSION=8.0.12
VERSION=8.0.15
BASEURL="https://dev.mysql.com/get/Downloads/MySQL-8.0"

LINUX_BASE=mysql-$VERSION-linux-glibc2.12-x86_64
OSX_BASE=mysql-$VERSION-macos10.13-x86_64
OSX_BASE=mysql-$VERSION-macos10.14-x86_64

TAR=tar
command -v gtar >/dev/null && TAR=gtar
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public void testDatabase()
throws Exception
{
try (TestingMySqlServer server = new TestingMySqlServer("testuser", "testpass", "db1", "db2")) {
assertEquals(server.getMySqlVersion(), "8.0.12");
assertEquals(server.getMySqlVersion(), "8.0.15");
assertEquals(server.getDatabases(), ImmutableSet.of("db1", "db2"));
assertEquals(server.getUser(), "testuser");
assertEquals(server.getPassword(), "testpass");
Expand Down

0 comments on commit 3bb8b01

Please sign in to comment.