Skip to content

Commit

Permalink
Merge pull request #36 from hden/async
Browse files Browse the repository at this point in the history
support async APIs
  • Loading branch information
hden committed Aug 25, 2022
2 parents 1d7a49e + d76168d commit edb1489
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ A Duct module that adds Integrant keys for a Datomic database connection and Rag

To install, add the following to your project `:dependencies`:

`[hden/duct.module.datomic "0.5.4"]`
`[hden/duct.module.datomic "0.5.7"]`

## Usage

Expand Down
4 changes: 2 additions & 2 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject hden/duct.module.datomic "0.5.6"
(defproject hden/duct.module.datomic "0.5.7"
:description "A Duct module that adds Integrant keys for a Datomic database connection and Ragtime migrations to a configuration."
:url "https://github.com/hden/duct.module.datomic"
:license {:name "EPL-2.0"
Expand All @@ -8,7 +8,7 @@
[com.datomic/client-cloud]
[duct/core "0.8.0"]
[duct/logger "0.3.0"]
[hden/duct.database.datomic "0.3.0"]
[hden/duct.database.datomic "0.3.1"]
[ragtime.datomic "0.3.0"]
[uritemplate-clj "1.3.1"]]
:repl-options {:init-ns duct.module.datomic}
Expand Down
4 changes: 2 additions & 2 deletions test/duct/migrator/ragtime/datomic_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
(testing "default migrations attribute"
(let [{:keys [connection client]} (create-mocks)]
(ig/init {:duct.migrator.ragtime/datomic
{:database (database-datomic/->Boundary client connection)
{:database (database-datomic/map->Boundary {:client client :connection connection})
:logger (->TestLogger logs)
:migrations [(ig/ref ::create-inventory)]}

Expand All @@ -54,7 +54,7 @@
(deftest change-and-resume-test
(let [{:keys [connection client]} (create-mocks)
config {:duct.migrator.ragtime/datomic
{:database (database-datomic/->Boundary client connection)
{:database (database-datomic/map->Boundary {:client client :connection connection})
:logger (->TestLogger logs)
:migrations [(ig/ref ::create-inventory)]}

Expand Down

0 comments on commit edb1489

Please sign in to comment.