From 7f8eeb38a1d612acb0d40b24eb97f366459a7d26 Mon Sep 17 00:00:00 2001 From: Leon Klingele Date: Sun, 4 Aug 2019 11:23:11 +0200 Subject: [PATCH] shard: pin dependencies This fixes the following error when running "shards update": Fetching https://github.com/will/crystal-pg.git Fetching https://github.com/crystal-lang/crystal-db.git Fetching https://github.com/crystal-lang/crystal-sqlite3.git Error resolving db (~> 0.5.0, ~> 0.6.0) --- shard.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/shard.yml b/shard.yml index 3e2b3d033..b1b500d8c 100644 --- a/shard.yml +++ b/shard.yml @@ -11,10 +11,13 @@ targets: dependencies: pg: github: will/crystal-pg + version: ~> 0.17.0 sqlite3: github: crystal-lang/crystal-sqlite3 + version: ~> 0.12.0 kemal: github: kemalcr/kemal + version: ~> 0.25.2 crystal: 0.29.0