diff --git a/.gitignore b/.gitignore index 14788eb..1bd9ea1 100644 --- a/.gitignore +++ b/.gitignore @@ -17,7 +17,6 @@ .cpcache/ gh-pages node_modules/ -pom.xml pom.xml.asc *.jar *.class diff --git a/NEWS.md b/NEWS.md index f3ad592..a55e694 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,16 @@ # History of futils releases +## 1.2.3 (2020-06-01) + +- Dropped support for Leiningen in favor of deps.edn +- Dropped support for `environ` (handled by aliases) +- Switched from `helpshift/hydrox` to the maintained `parkside-securities/hydrox` +- Switched from Travis to CircleCI +- Moved documentation to the domain `randomseed.io` +- Renamed group artifact ID to `randomseed.io` +- Fixed type hints for primitive types +- Fixed metadata of macros + ## 1.2.2 (2016-05-30) - Fixed metadata hash maps positions of defs in a few places. diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..e9ac79a --- /dev/null +++ b/pom.xml @@ -0,0 +1,66 @@ + + + 4.0.0 + io.randomseed + futils + jar + 1.2.3 + futils + Function Utilities Library + https://randomseed.io/software/futils/ + + + LGPL License + https://opensource.org/licenses/lgpl-3.0.html + + + + scm:git:git://github.com/randomseed-io/futils.git + scm:git:ssh://git@github.com/randomseed-io/futils.git + 1.2.3 + https://github.com/randomseed-io/futils/ + + + + org.clojure + clojure + 1.10.1 + + + + src + test + + + resources + + + + + resources + + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.6 + + + sign-artifacts + verify + + sign + + + + + + + + + clojars + https://repo.clojars.org/ + + + diff --git a/test/futils/test/main.clj b/test/futils/test/main.clj index 11c0291..a1743be 100644 --- a/test/futils/test/main.clj +++ b/test/futils/test/main.clj @@ -6,6 +6,6 @@ [clojure.tools.namespace.repl :refer [refresh refresh-all]])) -(defn -main [] +(defn -main [& more] (load-facts :print-facts))