Skip to content

Commit

Permalink
Fixed version-bump bug confusing it with lein template (#216)
Browse files Browse the repository at this point in the history
* Fixed version-bump bug confusing it with lein template

* Fixed double space
  • Loading branch information
anthony-khong authored Sep 23, 2020
1 parent bb787fa commit 613b5cf
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docker/project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
[ml.dmlc/xgboost4j-spark_2.12 "1.0.0"]
[ml.dmlc/xgboost4j_2.12 "1.0.0"]])

(defproject zero.one/geni "0.0.28"
(defproject zero.one/geni "0.0.29"
:jvm-opts ["-Duser.country=US" "-Duser.language=en"]
:description "A Clojure dataframe library that runs on Spark"
:url "https://github.com/zero-one-group/geni"
Expand Down
2 changes: 1 addition & 1 deletion lein-template/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject zero.one/geni "0.0.28a"
(defproject geni/lein-template "0.0.29"
:description "Leiningen template for a Geni application."
:url "https://github.com/zero-one-group/geni/tree/develop/lein-template"
:license {:name "Apache License"
Expand Down
2 changes: 1 addition & 1 deletion lein-template/resources/leiningen/new/geni/project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:dependencies [[org.clojure/clojure "1.10.1"]
[zero.one/geni "0.0.28"]
[zero.one/geni "0.0.29"]
[expound "0.8.5"]
;; Spark
[org.apache.spark/spark-core_2.12 "3.0.1"]
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
[ml.dmlc/xgboost4j-spark_2.12 "1.0.0"]
[ml.dmlc/xgboost4j_2.12 "1.0.0"]])

(defproject zero.one/geni "0.0.28"
(defproject zero.one/geni "0.0.29"
:jvm-opts ["-Duser.country=US" "-Duser.language=en"]
:description "A Clojure dataframe library that runs on Spark"
:url "https://github.com/zero-one-group/geni"
Expand Down
2 changes: 1 addition & 1 deletion resources/GENI_REPL_RELEASED_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.28
0.0.29
2 changes: 1 addition & 1 deletion scripts/version-bumps.clj
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
(def bumped-template-project-clj
(string/replace current-template-project-clj
(re-pattern (dep-str template-name current-released-version))
(dep-str project-name bumped-released-version)))
(dep-str template-name bumped-released-version)))

;; Bump lein-template's generated project.clj
(def current-generated-project-clj
Expand Down

0 comments on commit 613b5cf

Please sign in to comment.