Skip to content

Commit

Permalink
chore: prepare for 0.15.0 release (#581)
Browse files Browse the repository at this point in the history
* chore: bump version in docs

* chore: named parameters
  • Loading branch information
mdelapenya committed Oct 24, 2022
1 parent 6b8d699 commit 4c04bdf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mkdocs.yml
Expand Up @@ -60,4 +60,4 @@ nav:
- Getting help: getting_help.md
edit_uri: edit/main/docs/
extra:
latest_version: 0.14.0
latest_version: 0.15.0
2 changes: 1 addition & 1 deletion wait/sql.go
Expand Up @@ -12,7 +12,7 @@ import (
const defaultForSqlQuery = "SELECT 1"

//ForSQL constructs a new waitForSql strategy for the given driver
func ForSQL(port nat.Port, driver string, url func(string, nat.Port) string) *waitForSql {
func ForSQL(port nat.Port, driver string, url func(host string, port nat.Port) string) *waitForSql {
return &waitForSql{
Port: port,
URL: url,
Expand Down

0 comments on commit 4c04bdf

Please sign in to comment.