Skip to content

Commit 2536373

Browse files
committed
Release v0.0.2
1 parent 0456893 commit 2536373

File tree

4 files changed

+52
-3
lines changed

4 files changed

+52
-3
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
node_modules
77
out/
88
*.jar
9-
pom.xml
9+

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@
44
[![Cljdoc badge](https://cljdoc.org/badge/taipei.404/mate)](https://cljdoc.org/d/taipei.404/mate/CURRENT)
55
[![Clojars download_badge](https://img.shields.io/clojars/dt/taipei.404/mate?color=opal)](https://clojars.org/taipei.404/mate)
66

7-
Functions which I wish were in the Clojure standard library.
7+
Useful functions, some of which I wish were in the Clojure standard library.
8+
9+
Examples of usage:
10+
- [test/mate/core_test.cljc](test/mate/core_test.cljc)
11+
- [test/mate/io_test.cljc](test/mate/io_test.cljc)
812

913
## License
1014

deps.edn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
:exec-args {:sync-pom true
1919
:group-id "taipei.404"
2020
:artifact-id "mate"
21-
:version "0.0.1"
21+
:version "0.0.2"
2222
:jar "mate.jar"}}}}
2323
;; Memo for deploying a new release:
2424
;; - Change the version above, then build the jar:

pom.xml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
3+
<modelVersion>4.0.0</modelVersion>
4+
<packaging>jar</packaging>
5+
<groupId>taipei.404</groupId>
6+
<artifactId>mate</artifactId>
7+
<version>0.0.2</version>
8+
<name>mate</name>
9+
<description>Useful functions, some of which I wish were in the Clojure standard library.</description>
10+
<url>https://github.com/green-coder/mate</url>
11+
<scm>
12+
<url>https://github.com/green-coder/mate</url>
13+
<connection>scm:git:git://github.com/green-coder/mate.git</connection>
14+
<developerConnection>scm:git:ssh://[email protected]/green-coder/mate.git</developerConnection>
15+
<tag>made-in-taiwan</tag>
16+
</scm>
17+
<licenses>
18+
<license>
19+
<name>Eclipse Public License v2.0</name>
20+
<url>http://www.eclipse.org/legal/epl-v20.html</url>
21+
</license>
22+
</licenses>
23+
<developers>
24+
<developer>
25+
<id>green-coder</id>
26+
<name>Vincent Cantin</name>
27+
</developer>
28+
</developers>
29+
<dependencies>
30+
<dependency>
31+
<groupId>org.clojure</groupId>
32+
<artifactId>clojure</artifactId>
33+
<version>1.10.3</version>
34+
</dependency>
35+
</dependencies>
36+
<build>
37+
<sourceDirectory>src</sourceDirectory>
38+
</build>
39+
<repositories>
40+
<repository>
41+
<id>clojars</id>
42+
<url>https://repo.clojars.org/</url>
43+
</repository>
44+
</repositories>
45+
</project>

0 commit comments

Comments
 (0)