Skip to content

Commit 639a0b1

Browse files
committed
Tweak URLs for move to clj-commons
1 parent 0fad2af commit 639a0b1

File tree

3 files changed

+6
-23
lines changed

3 files changed

+6
-23
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
[![Clojars](https://img.shields.io/clojars/v/io.aviso/pretty.svg)](http://clojars.org/io.aviso/pretty)
2-
[![CI](https://github.com/AvisoNovate/pretty/actions/workflows/clojure.yml/badge.svg)](https://github.com/AvisoNovate/pretty/actions/workflows/clojure.yml)
1+
[![Clojars](https://img.shields.io/clojars/v/org.clj-commons/pretty.svg)](http://clojars.org/clj-commons/pretty)
2+
[![CI](https://github.com/clj-commons/pretty/actions/workflows/clojure.yml/badge.svg)](https://github.com/AvisoNovate/pretty/actions/workflows/clojure.yml)
33

44
*Sometimes, neatness counts*
55

build.clj

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[net.lewisship.build :as b]
66
[clojure.string :as str]))
77

8-
(def lib 'io.aviso/pretty)
8+
(def lib 'org.clj-commons/pretty)
99
(def version (-> "VERSION.txt" slurp str/trim))
1010

1111
(def jar-params {:project-name lib
@@ -27,22 +27,5 @@
2727
(defn codox
2828
[_params]
2929
(b/generate-codox {:project-name lib
30-
:version version
31-
:aliases [:dev]}))
30+
:version version}))
3231

33-
(def publish-dir "../aviso-docs/pretty")
34-
35-
(defn publish
36-
"Generate Codox documentation and publish via a GitHub push."
37-
[_params]
38-
(println "Generating Codox documentation ...")
39-
(codox nil)
40-
(println "Copying documentation to" publish-dir "...")
41-
(build/copy-dir {:target-dir publish-dir
42-
:src-dirs ["target/doc"]})
43-
(println "Committing changes ...")
44-
(build/process {:dir publish-dir
45-
:command-args ["git" "commit" "-a" "-m" (str "io.aviso/pretty " version)]})
46-
(println "Pushing changes ...")
47-
(build/process {:dir publish-dir
48-
:command-args ["git" "push"]}))

deps.edn

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
{:main-opts ["-m" "clj-commons.pretty.repl"]}}
3333

3434
:net.lewisship.build/scm
35-
{:url "https://github.com/AvisoNovate/pretty"}
35+
{:url "https://github.com/clj-commons/pretty"}
3636

3737
:codox/config
3838
{:description "Clojure library to help print things, prettily"
39-
:source-uri "https://github.com/AvisoNovate/pretty/blob/master/{filepath}#L{line}"}}
39+
:source-uri "https://github.com/clj-commons/pretty/blob/master/{filepath}#L{line}"}}

0 commit comments

Comments
 (0)