diff --git a/README.md b/README.md index 6d7f69a..707f183 100644 --- a/README.md +++ b/README.md @@ -19,13 +19,13 @@ See [«Recipes and best practices»](#recipes-and-best-practices) for usage exam Add the following dependency to your `project.clj` file: ```clojure -[likid_geimfari/secrets "0.2.0"] +[likid_geimfari/secrets "1.0.0"] ``` **Clojure CLI/deps.edn**: ``` -likid_geimfari/secrets {:mvn/version "0.2.0"} +likid_geimfari/secrets {:mvn/version "1.0.0"} ``` ## Documentation diff --git a/project.clj b/project.clj index 221b3eb..88b70f5 100644 --- a/project.clj +++ b/project.clj @@ -7,4 +7,8 @@ :plugins [[lein-cljfmt "0.6.8"] [lein-cloverage "1.1.2"]] :dependencies [[org.clojure/clojure "1.10.1"] [commons-codec "1.6"]] + :deploy-repositories [["clojars" {:url "https://repo.clojars.org" + :username :env/clojars_username + :password :env/clojars_password + :sign-releases false}]] :repl-options {:init-ns secrets.core})