Skip to content

Commit

Permalink
Merge pull request #13 from scarytom/update-flyway-version
Browse files Browse the repository at this point in the history
Update flyway version to latest (5.1.4)
  • Loading branch information
metaphor committed Nov 20, 2018
2 parents 4d8a26a + ac2701d commit 5865af8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This plugin is alpha version, expecting defects.

[![Clojars Project](http://clojars.org/com.github.metaphor/lein-flyway/latest-version.svg)](http://clojars.org/com.github.metaphor/lein-flyway)

aligned with flyway version 4.0.3
aligned with flyway version 5.1.4

### Configuration
lein-flyway tries to align with offical configuration properties, please refer to [sample.project.clj](https://github.com/metaphor/lein-flyway/blob/master/sample.project.clj) for configuration details.
Expand Down
4 changes: 2 additions & 2 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
(defproject com.github.metaphor/lein-flyway "4.0.3"
(defproject com.github.metaphor/lein-flyway "5.1.4"
:description "Leiningen Plugin for Database Migration Tool Flyway"
:url "https://github.com/metaphor/lein-flyway"
:license {:name "Eclipse Public License - v 1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:min-lein-version "2.0.0"
:eval-in-leiningen true

:dependencies [[org.flywaydb/flyway-core "4.0.3"]
:dependencies [[org.flywaydb/flyway-core "5.1.4"]
[commons-io "2.4"]]

:profiles {:dev {:dependencies [[org.clojure/clojure "1.8.0"]
Expand Down
2 changes: 1 addition & 1 deletion src/leiningen/flyway.clj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(ns leiningen.flyway
(:require [leiningen.core.eval :refer [eval-in-project]]))

(def ^:private CURRENT_VERSION "4.0.3")
(def ^:private CURRENT_VERSION "5.1.4")

(defn flyway
"Run the flyway plugin."
Expand Down

0 comments on commit 5865af8

Please sign in to comment.