Skip to content

Commit

Permalink
v0.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
bhlieberman committed Aug 22, 2023
1 parent b213345 commit 152adac
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions 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.3.4")
(def version "0.3.5")
(def class-dir "target/classes/")
(def basis (b/create-basis {}))
(def jar-file (format "target/%s-%s.jar" (name lib) version))
Expand All @@ -16,8 +16,8 @@
:lib lib
:version version
:basis basis
:src-dirs ["src"]})
(b/copy-dir {:src-dirs ["src"]
:src-dirs ["src" "resources"]})
(b/copy-dir {:src-dirs ["src" "resources"]
:target-dir class-dir})
(b/jar {:class-dir class-dir
:jar-file jar-file}))
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.3.4.jar"}}}}
:exec-args {:installer :remote :artifact "target/clj-baseball-0.3.5.jar"}}}}
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.3.4</version>
<version>0.3.5</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.3.4</tag>
<tag>v0.3.5</tag>
</scm>
<dependencies>
<dependency>
Expand Down

0 comments on commit 152adac

Please sign in to comment.