Skip to content

Commit 1d94048

Browse files
committed
v0.2.2 cljdocs release
1 parent 8dee189 commit 1d94048

File tree

3 files changed

+17
-5
lines changed

3 files changed

+17
-5
lines changed

Makefile

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
1+
# Release Checklist:
2+
#
3+
# Update version in SCM tag in POM.xml
4+
# Update version number here
5+
# `make`
6+
# Push changes to Github
7+
# Create version tag on Github
8+
9+
ALL: jar deploy
110

211
jar:
3-
clojure -X:jar :version '"0.2.1"'
12+
exec clojure -X:jar :version '"0.2.2"'
413

514
deploy:
6-
env CLOJARS_USERNAME=coconutpalm CLOJARS_PASSWORD=${CLOJARS_PASSWORD} clj -X:deploy
15+
./deploy.sh
716

8-
ALL: jar deploy

deploy.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/bash
2+
set -x
3+
4+
env CLOJARS_USERNAME=coconutpalm CLOJARS_PASSWORD=$CLOJARS_PASSWORD clj -X:deploy

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
<packaging>jar</packaging>
55
<groupId>io.github.coconutpalm</groupId>
66
<artifactId>clojure-desktop-toolkit</artifactId>
7-
<version>0.2.1</version>
7+
<version>0.2.2</version>
88
<name>clojure-desktop-toolkit</name>
99
<scm>
1010
<url>https://github.com/coconutpalm/clojure-desktop-toolkit</url>
1111
<connection>scm:git:git://github.com/coconutpalm/clojure-desktop-toolkit.git</connection>
1212
<developerConnection>scm:git:ssh://[email protected]/coconutpalm/clojure-desktop-toolkit.git</developerConnection>
13-
<tag>v0.2.1</tag>
13+
<tag>v0.2.2</tag>
1414
</scm>
1515
<dependencies>
1616
<dependency>

0 commit comments

Comments
 (0)