Skip to content

Commit

Permalink
Update the ClojureDocs EDN URL
Browse files Browse the repository at this point in the history
  • Loading branch information
bbatsov committed Dec 31, 2020
1 parent f8a85fe commit 5abb6fe
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## master (unreleased)

### Changes

* Updated the ClojureDocs EDN export URL (see <https://github.com/clojure-emacs/clojuredocs-export-edn/issues/3>).

## 0.6.1 (2020-10-07)

* Remove reflection warnings.
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ VERSION ?= 1.10
TEST_PROFILES := +test

resources/clojuredocs/export.edn:
curl -o $@ https://clojuredocs-edn.netlify.app/export.compact.min.edn
curl -o $@ https://github.com/clojure-emacs/clojuredocs-export-edn/raw/master/exports/export.compact.edn

test:
lein with-profile +$(VERSION),$(TEST_PROFILES) test
Expand Down
2 changes: 1 addition & 1 deletion src/orchard/clojuredocs.clj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

(def cache (atom {}))
(def default-edn-file-url
"https://clojuredocs-edn.netlify.com/export.compact.edn")
"https://github.com/clojure-emacs/clojuredocs-export-edn/raw/master/exports/export.compact.edn")
(def cache-file-name
(str/join os/file-separator [(os/cache-dir)
"orchard"
Expand Down

0 comments on commit 5abb6fe

Please sign in to comment.