From 63602f224701e3e634d7ec2f7d4d89944b1c400e Mon Sep 17 00:00:00 2001 From: Wes Morgan Date: Wed, 18 Oct 2017 09:11:48 -0600 Subject: [PATCH] Replace 2.7.2 with 2.8.0 in FAQ on string deps 2.7.2 was never released. --- doc/FAQ.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/FAQ.md b/doc/FAQ.md index 8b9ce3c8..b401b065 100644 --- a/doc/FAQ.md +++ b/doc/FAQ.md @@ -254,14 +254,14 @@ cannot for some reason and don't care about security, you can add **Q:** I have a dependency whose group ID and/or artifact ID starts with a number (which is invalid for symbols in Clojure). How can I add it to my project's dependencies? -**A:** As of version 2.7.2, Leiningen supports string dependency names like +**A:** As of version 2.8.0, Leiningen supports string dependency names like this: ```clj :dependencies [["net.3scale/3scale-api" "3.0.2"]] ``` -Prior to version 2.7.2, this is the workaround: +Prior to version 2.8.0, this is the workaround: ```clj :dependencies [[~(symbol "net.3scale" "3scale-api") "3.0.2"]]