Skip to content

Commit

Permalink
Release 1.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
siefca committed Jun 2, 2020
1 parent 345cc87 commit 146015b
Show file tree
Hide file tree
Showing 4 changed files with 78 additions and 2 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
.cpcache/
gh-pages
node_modules/
pom.xml
pom.xml.asc
*.jar
*.class
Expand Down
11 changes: 11 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
66 changes: 66 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.randomseed</groupId>
<artifactId>futils</artifactId>
<packaging>jar</packaging>
<version>1.2.3</version>
<name>futils</name>
<description>Function Utilities Library</description>
<url>https://randomseed.io/software/futils/</url>
<licenses>
<license>
<name>LGPL License</name>
<url>https://opensource.org/licenses/lgpl-3.0.html</url>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/randomseed-io/futils.git</connection>
<developerConnection>scm:git:ssh://[email protected]/randomseed-io/futils.git</developerConnection>
<tag>1.2.3</tag>
<url>https://github.com/randomseed-io/futils/</url>
</scm>
<dependencies>
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojure</artifactId>
<version>1.10.1</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>test</testSourceDirectory>
<resources>
<resource>
<directory>resources</directory>
</resource>
</resources>
<testResources>
<testResource>
<directory>resources</directory>
</testResource>
</testResources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>clojars</id>
<url>https://repo.clojars.org/</url>
</repository>
</repositories>
</project>
2 changes: 1 addition & 1 deletion test/futils/test/main.clj
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
[clojure.tools.namespace.repl :refer [refresh
refresh-all]]))

(defn -main []
(defn -main [& more]
(load-facts :print-facts))

0 comments on commit 146015b

Please sign in to comment.