diff --git a/CHANGELOG.md b/CHANGELOG.md index a6207ac..f47be4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,4 +12,8 @@ Computes: 4. :pressure-millibars 5. :pressure-pascals 6. :relative-humidity -7. :saturation-vapour-pressure :temperature-celsius :temperature-kelvin :volume +7. :saturation-vapour-pressure +8. :temperature-celsius +9. :temperature-kelvin +10. :volume +11. :wet-bulb-temperature diff --git a/project.clj b/project.clj index ed0c40b..e88fc90 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject humidity "0.1.0" +(defproject humidity "0.1.1-SNAPSHOT" :cloverage {:output "docs/cloverage" :ns-exclude-regex [#"beowulf\.gendoc" #"beowulf\.scratch"]} :codox {:metadata {:doc "**TODO**: write docs" @@ -6,6 +6,8 @@ :output-path "docs/codox" :source-uri "https://github.com/simon-brooke/humidity/blob/master/{filepath}#L{line}"} :dependencies [[org.clojure/clojure "1.12.5"]] + :deploy-repositories [["releases" :clojars] + ["snapshots" :clojars]] :description "Functions to compute relative humidity, absolute humidity, wet bulb temperature, and other values related to humidity of air, given partial data."