Skip to content

Commit

Permalink
Version bump 0.0.23 (#164)
Browse files Browse the repository at this point in the history
* Vesion bump to 0.0.23

* Removed redundant release checklist
  • Loading branch information
anthony-khong authored Aug 19, 2020
1 parent fee6536 commit be42842
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 9 deletions.
6 changes: 2 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,14 @@ or spin up a REPL by running `lein repl` and run:
(autotest :filter (complement :slow))
```

## Deployment Checklist
## Release Checklist

- [Optional] Check if any libraries are outdated with `lein ancient`.
- Bump the versions in:
- `project.clj`.
- `lein-template`'s `project.clj`;
- `lein-template`'s `resources/.../project.clj`; and
- `resources/GENI_REPL_RELEASED_VERSION`.
- Ensure that the pre-release CI steps pass with `make pre-release-test`.
- Create the uberjar `lein uberjar` and manually verify that the REPL works, the `SparkSession` is instantiated and that data can be loaded.
- Ensure that the CI steps pass with `make ci`.
- Deploy the main library with `lein deploy clojars`.
- Push the newly built container to DockerHub with `make docker-push`.
- Merge the library version-bump branch.
Expand Down
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.22"
(defproject zero.one/geni "0.0.23"
:jvm-opts ["-Duser.country=US" "-Duser.language=en"]
:description "A Clojure library that wraps Apache 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 geni/lein-template "0.0.22"
(defproject geni/lein-template "0.0.23"
: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.22"]
[zero.one/geni "0.0.23"]
;; REPL
[nrepl "0.8.0"]
[reply "0.4.4"]
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.22"
(defproject zero.one/geni "0.0.23"
:jvm-opts ["-Duser.country=US" "-Duser.language=en"]
:description "A Clojure library that wraps Apache 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.22
0.0.23

0 comments on commit be42842

Please sign in to comment.