From 5affcc43415a2b0bc1ac8efaae136b3f6d53b137 Mon Sep 17 00:00:00 2001 From: James Reeves Date: Wed, 6 Nov 2024 19:00:35 +0000 Subject: [PATCH] Release 0.9.5 --- CHANGELOG.md | 6 ++++++ README.md | 4 ++-- core/project.clj | 2 +- jdbc/project.clj | 4 ++-- next-jdbc/project.clj | 4 ++-- project.clj | 8 ++++---- 6 files changed, 17 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 47765c5..f765379 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.9.5 (2024-11-06) + +* Added primary key restriction to migrations table +* Added `:migrations-table-exists-sql` option to jdbc and next-jdbc +* Updated next.jdbc dependency to 1.3.955 + ## 0.9.4 (2024-03-01) * Fixed SQL separator marker for MySQL (#159) diff --git a/README.md b/README.md index 67c4846..a3688e7 100644 --- a/README.md +++ b/README.md @@ -11,11 +11,11 @@ for expressing web applications. Add the following dependency to your deps.edn file: - dev.weavejester/ragtime {:mvn/version "0.9.4"} + dev.weavejester/ragtime {:mvn/version "0.9.5"} Or to your Leiningen project file: - [dev.weavejester/ragtime "0.9.4"] + [dev.weavejester/ragtime "0.9.5"] ## Overview diff --git a/core/project.clj b/core/project.clj index 8f77d3e..b764fb4 100644 --- a/core/project.clj +++ b/core/project.clj @@ -1,4 +1,4 @@ -(defproject dev.weavejester/ragtime.core "0.9.4" +(defproject dev.weavejester/ragtime.core "0.9.5" :description "A database-independent migration library" :url "https://github.com/weavejester/ragtime" :scm {:dir ".."} diff --git a/jdbc/project.clj b/jdbc/project.clj index 8902e28..22c1028 100644 --- a/jdbc/project.clj +++ b/jdbc/project.clj @@ -1,4 +1,4 @@ -(defproject dev.weavejester/ragtime.jdbc "0.9.4" +(defproject dev.weavejester/ragtime.jdbc "0.9.5" :description "Ragtime migrations for JDBC" :url "https://github.com/weavejester/ragtime" :scm {:dir ".."} @@ -6,7 +6,7 @@ :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] [org.clojure/java.jdbc "0.7.12"] - [dev.weavejester/ragtime.core "0.9.4"] + [dev.weavejester/ragtime.core "0.9.5"] [resauce "0.2.0"]] :profiles {:dev {:dependencies [[com.h2database/h2 "2.2.224"]]}}) diff --git a/next-jdbc/project.clj b/next-jdbc/project.clj index a81eb1f..29e1d71 100644 --- a/next-jdbc/project.clj +++ b/next-jdbc/project.clj @@ -1,4 +1,4 @@ -(defproject dev.weavejester/ragtime.next-jdbc "0.9.4" +(defproject dev.weavejester/ragtime.next-jdbc "0.9.5" :description "Ragtime migrations for next.jdbc" :url "https://github.com/weavejester/ragtime" :scm {:dir ".."} @@ -6,7 +6,7 @@ :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.10.3"] [com.github.seancorfield/next.jdbc "1.3.955"] - [dev.weavejester/ragtime.core "0.9.4"] + [dev.weavejester/ragtime.core "0.9.5"] [resauce "0.2.0"]] :profiles {:dev {:dependencies [[com.h2database/h2 "2.2.224"]]}}) diff --git a/project.clj b/project.clj index fef3beb..a27d2c5 100644 --- a/project.clj +++ b/project.clj @@ -1,11 +1,11 @@ -(defproject dev.weavejester/ragtime "0.9.4" +(defproject dev.weavejester/ragtime "0.9.5" :description "A database-independent migration library" :url "https://github.com/weavejester/ragtime" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} - :dependencies [[dev.weavejester/ragtime.core "0.9.4"] - [dev.weavejester/ragtime.jdbc "0.9.4"] - [dev.weavejester/ragtime.next-jdbc "0.9.4"]] + :dependencies [[dev.weavejester/ragtime.core "0.9.5"] + [dev.weavejester/ragtime.jdbc "0.9.5"] + [dev.weavejester/ragtime.next-jdbc "0.9.5"]] :plugins [[lein-sub "0.3.0"] [lein-codox "0.10.3"]] :sub ["core" "jdbc" "next-jdbc"]