From 7bb29be285c90ffeec960bb0ea176525ee70ae3b Mon Sep 17 00:00:00 2001 From: Ben Lieberman Date: Thu, 2 Nov 2023 17:09:47 -0600 Subject: [PATCH] hopefully the :no-doc trick will work --- build.clj | 2 +- deps.edn | 2 +- doc/cljdoc.edn | 3 ++- pom.xml | 4 ++-- src/com/slothrop/clj_baseball/bbref/standings.clj | 2 +- src/com/slothrop/clj_baseball/bbref/team_game_logs.clj | 2 +- src/com/slothrop/clj_baseball/cache/cache_config.clj | 2 +- src/com/slothrop/clj_baseball/player/profile_spec.clj | 2 +- src/com/slothrop/clj_baseball/statcast/results_spec.clj | 2 +- src/com/slothrop/clj_baseball/statcast/specs.clj | 2 +- src/com/slothrop/clj_baseball/statcast/utils.clj | 2 +- 11 files changed, 13 insertions(+), 12 deletions(-) diff --git a/build.clj b/build.clj index 4c04a05..1d8ab1c 100644 --- a/build.clj +++ b/build.clj @@ -2,7 +2,7 @@ (:require [clojure.tools.build.api :as b])) (def lib 'slothrop/clj-baseball) -(def version "0.4.1") +(def version "0.4.2") (def class-dir "target/classes/") (def basis (b/create-basis {})) (def jar-file (format "target/%s-%s.jar" (name lib) version)) diff --git a/deps.edn b/deps.edn index 6f071bf..acf6fd1 100644 --- a/deps.edn +++ b/deps.edn @@ -25,4 +25,4 @@ {:extra-deps {djblue/portal {:mvn/version "0.33.0"}}} :deploy {:replace-deps {slipset/deps-deploy {:mvn/version "0.1.5"}} :exec-fn deps-deploy.deps-deploy/deploy - :exec-args {:installer :remote :artifact "target/clj-baseball-0.4.1.jar"}}}} \ No newline at end of file + :exec-args {:installer :remote :artifact "target/clj-baseball-0.4.2.jar"}}}} \ No newline at end of file diff --git a/doc/cljdoc.edn b/doc/cljdoc.edn index 086a002..94bc3a4 100644 --- a/doc/cljdoc.edn +++ b/doc/cljdoc.edn @@ -1,2 +1,3 @@ {:cljdoc.doc/tree [["Readme" {:file "README.md"}] - ["Getting Started" {:file "doc/getting-started.md"}]]} \ No newline at end of file + ["Getting Started" {:file "doc/getting-started.md"}]] + :cljdoc/languages ["clj"]} \ No newline at end of file diff --git a/pom.xml b/pom.xml index 892b976..39da151 100644 --- a/pom.xml +++ b/pom.xml @@ -4,13 +4,13 @@ jar org.clojars.slothrop clj-baseball - 0.4.1 + 0.4.2 clj-baseball https://github.com/bhlieberman/clj-baseball scm:git:git://github.com/bhlieberman/clj-baseball.git scm:git:ssh://git@github.com/bhlieberman/clj-baseball.git - v0.4.1 + v0.4.2 diff --git a/src/com/slothrop/clj_baseball/bbref/standings.clj b/src/com/slothrop/clj_baseball/bbref/standings.clj index 6fcb2f5..6390253 100644 --- a/src/com/slothrop/clj_baseball/bbref/standings.clj +++ b/src/com/slothrop/clj_baseball/bbref/standings.clj @@ -1,4 +1,4 @@ -(ns com.slothrop.clj-baseball.bbref.standings +(ns ^:no-doc com.slothrop.clj-baseball.bbref.standings (:require [com.slothrop.clj-baseball.bbref.datasource :refer [-get]] [clojure.string :as string]) (:import [org.jsoup.nodes Document])) diff --git a/src/com/slothrop/clj_baseball/bbref/team_game_logs.clj b/src/com/slothrop/clj_baseball/bbref/team_game_logs.clj index a8c25ed..c1d1923 100644 --- a/src/com/slothrop/clj_baseball/bbref/team_game_logs.clj +++ b/src/com/slothrop/clj_baseball/bbref/team_game_logs.clj @@ -1,4 +1,4 @@ -(ns com.slothrop.clj-baseball.bbref.team-game-logs +(ns ^:no-doc com.slothrop.clj-baseball.bbref.team-game-logs (:require [com.slothrop.clj-baseball.bbref.datasource :refer [-get]]) (:import [org.jsoup.nodes Document$OutputSettings Document$OutputSettings$Syntax] diff --git a/src/com/slothrop/clj_baseball/cache/cache_config.clj b/src/com/slothrop/clj_baseball/cache/cache_config.clj index 53853bb..72175c1 100644 --- a/src/com/slothrop/clj_baseball/cache/cache_config.clj +++ b/src/com/slothrop/clj_baseball/cache/cache_config.clj @@ -1,4 +1,4 @@ -(ns com.slothrop.clj-baseball.cache.cache-config +(ns ^:no-doc com.slothrop.clj-baseball.cache.cache-config (:import [java.nio.file Paths])) (def ^:dynamic *cache-enabled?* false) diff --git a/src/com/slothrop/clj_baseball/player/profile_spec.clj b/src/com/slothrop/clj_baseball/player/profile_spec.clj index b61b5eb..7768c66 100644 --- a/src/com/slothrop/clj_baseball/player/profile_spec.clj +++ b/src/com/slothrop/clj_baseball/player/profile_spec.clj @@ -1,4 +1,4 @@ -(ns com.slothrop.clj-baseball.player.profile-spec +(ns ^:no-doc com.slothrop.clj-baseball.player.profile-spec (:require [clojure.spec.alpha :as s])) (s/def ::games int?) diff --git a/src/com/slothrop/clj_baseball/statcast/results_spec.clj b/src/com/slothrop/clj_baseball/statcast/results_spec.clj index a312882..d081856 100644 --- a/src/com/slothrop/clj_baseball/statcast/results_spec.clj +++ b/src/com/slothrop/clj_baseball/statcast/results_spec.clj @@ -1,4 +1,4 @@ -(ns com.slothrop.clj-baseball.statcast.results-spec +(ns ^:no-doc com.slothrop.clj-baseball.statcast.results-spec (:require [clojure.spec.alpha :as s] [clojure.string :as string])) diff --git a/src/com/slothrop/clj_baseball/statcast/specs.clj b/src/com/slothrop/clj_baseball/statcast/specs.clj index 985f120..247d779 100644 --- a/src/com/slothrop/clj_baseball/statcast/specs.clj +++ b/src/com/slothrop/clj_baseball/statcast/specs.clj @@ -1,4 +1,4 @@ -(ns com.slothrop.clj-baseball.statcast.specs +(ns ^:no-doc com.slothrop.clj-baseball.statcast.specs (:require [clojure.spec.alpha :as s])) (s/def ::fastballs (s/coll-of #{:two-seam :four-seam :cutter :sinker} :distinct true)) diff --git a/src/com/slothrop/clj_baseball/statcast/utils.clj b/src/com/slothrop/clj_baseball/statcast/utils.clj index 79a2acb..c70b887 100644 --- a/src/com/slothrop/clj_baseball/statcast/utils.clj +++ b/src/com/slothrop/clj_baseball/statcast/utils.clj @@ -1,4 +1,4 @@ -(ns com.slothrop.clj-baseball.statcast.utils +(ns ^:no-doc com.slothrop.clj-baseball.statcast.utils (:require [com.slothrop.clj-baseball.statcast.batter :refer [query-defaults]] [clojure.string :as string] [clojure.edn :as edn])