From 9907fed5670f190e1bd3d48e61de236aac7ad0d9 Mon Sep 17 00:00:00 2001 From: Travis Shears Date: Fri, 4 Jul 2025 15:11:10 +0200 Subject: [PATCH] add project.clj --- README.md | 8 ++++++-- project.clj | 12 ++++++++++++ 2 files changed, 18 insertions(+), 2 deletions(-) create mode 100644 project.clj diff --git a/README.md b/README.md index 4ba4260..8c940a3 100644 --- a/README.md +++ b/README.md @@ -12,9 +12,13 @@ A Clojure library providing convenient wrapper functions for the [Gum](https://g Add this to your `deps.edn`: ```clojure -{:deps {travisshears/gum-utils { +{:deps {com.travisshears/gum-utils { :git/url "https://git.travisshears.com/travisshears/gum-utils" :git/tag "40K" - :git/sha "4c4a34d" + :git/sha "77935f39f741" }}} ``` + +## Dev + +Tags can be manually created in git hosting ui [here](https://git.travisshears.com/travisshears/gum-utils/releases) diff --git a/project.clj b/project.clj new file mode 100644 index 0000000..fe92d1a --- /dev/null +++ b/project.clj @@ -0,0 +1,12 @@ +(defproject com.travisshears/gum-utils "40K" + :description "A shell wrapper for gum" + :license {:name "ANTI-CAPITALIST SOFTWARE LICENSE (v 1.4)" + :url "https://anticapitalist.software/" + :distribution :repo} + :url "https://git.travisshears.com/travisshears/gum-utils" + :dependencies []) + ;; :deploy-repositories [["releases" :clojars] + ;; ["snapshots" :clojars]] + ;; :plugins [[codox "0.8.0"]] + ;; :codox {:src-dir-uri "http://github.com/flatland/useful/blob/develop/" + ;; :src-linenum-anchor-prefix "L"})