Skip to content

Commit

Permalink
hopefully the :no-doc trick will work
Browse files Browse the repository at this point in the history
  • Loading branch information
bhlieberman committed Nov 2, 2023
1 parent c20a7bb commit 7bb29be
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 12 deletions.
2 changes: 1 addition & 1 deletion build.clj
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
2 changes: 1 addition & 1 deletion deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -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"}}}}
:exec-args {:installer :remote :artifact "target/clj-baseball-0.4.2.jar"}}}}
3 changes: 2 additions & 1 deletion doc/cljdoc.edn
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
{:cljdoc.doc/tree [["Readme" {:file "README.md"}]
["Getting Started" {:file "doc/getting-started.md"}]]}
["Getting Started" {:file "doc/getting-started.md"}]]
:cljdoc/languages ["clj"]}
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<packaging>jar</packaging>
<groupId>org.clojars.slothrop</groupId>
<artifactId>clj-baseball</artifactId>
<version>0.4.1</version>
<version>0.4.2</version>
<name>clj-baseball</name>
<scm>
<url>https://github.com/bhlieberman/clj-baseball</url>
<connection>scm:git:git://github.com/bhlieberman/clj-baseball.git</connection>
<developerConnection>scm:git:ssh://[email protected]/bhlieberman/clj-baseball.git</developerConnection>
<tag>v0.4.1</tag>
<tag>v0.4.2</tag>
</scm>
<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion src/com/slothrop/clj_baseball/bbref/standings.clj
Original file line number Diff line number Diff line change
@@ -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]))
Expand Down
2 changes: 1 addition & 1 deletion src/com/slothrop/clj_baseball/bbref/team_game_logs.clj
Original file line number Diff line number Diff line change
@@ -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]
Expand Down
2 changes: 1 addition & 1 deletion src/com/slothrop/clj_baseball/cache/cache_config.clj
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/com/slothrop/clj_baseball/player/profile_spec.clj
Original file line number Diff line number Diff line change
@@ -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?)
Expand Down
2 changes: 1 addition & 1 deletion src/com/slothrop/clj_baseball/statcast/results_spec.clj
Original file line number Diff line number Diff line change
@@ -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]))

Expand Down
2 changes: 1 addition & 1 deletion src/com/slothrop/clj_baseball/statcast/specs.clj
Original file line number Diff line number Diff line change
@@ -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))
Expand Down
2 changes: 1 addition & 1 deletion src/com/slothrop/clj_baseball/statcast/utils.clj
Original file line number Diff line number Diff line change
@@ -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])
Expand Down

0 comments on commit 7bb29be

Please sign in to comment.