Skip to content

Commit c9cc6a2

Browse files
committed
Release 0.2.0
1 parent 22a80aa commit c9cc6a2

File tree

2 files changed

+18
-4
lines changed

2 files changed

+18
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,22 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5-
## [0.1.2](https://github.com/Lambda-X/lambone/compare/0.1.1...0.1.2)
5+
## [0.2.0](https://github.com/boot-clj/boot-cljs-devtools/compare/0.1.2...0.2.0)
6+
7+
- _\*API breaking\*_ Task split: now there is one task for `cljs-devtools` and one for `dirac` (thank you @pepe)
8+
- Throw if required depedencies are missing for the called task
9+
10+
## [0.1.2](https://github.com/boot-clj/boot-cljs-devtools/compare/0.1.1...0.1.2)
611

712
- Support for Dirac 0.7.x
813

9-
## [0.1.1](https://github.com/Lambda-X/lambone/compare/0.1.0...0.1.1)
14+
## [0.1.1](https://github.com/boot-clj/boot-cljs-devtools/compare/0.1.0...0.1.1)
1015

1116
- Use the `:preloads` compiler options (ClojureScript >= `1.9.89` is required)
1217
- Require `boot-cljs-devtools` before any other require
1318
- Add `nrepl-opts` for configuring the spawned nRepl instance
1419
- Add `dirac-opts` for configuring `dirac`
1520

16-
## [0.1.0](https://github.com/Lambda-X/lambone/compare/af649ed...0.1.0)
21+
## [0.1.0](https://github.com/boot-clj/boot-cljs-devtools/compare/af649ed...0.1.0)
1722
### Initial Release
1823
- First version of the jupl/boot-cljs-devtools.

build.boot

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
(require '[adzerk.bootlaces :refer :all])
66

7-
(def +version+ "0.1.3-SNAPSHOT")
7+
(def +version+ "0.2.0")
88

99
(bootlaces! +version+)
1010

@@ -15,3 +15,12 @@
1515
:url "https://github.com/boot-clj/boot-cljs-devtools"
1616
:scm {:url "https://github.com/boot-clj/boot-cljs-devtools"}
1717
:license {"MIT" "https://opensource.org/licenses/MIT"}})
18+
19+
(def snapshot? #(.endsWith +version+ "-SNAPSHOT"))
20+
21+
(deftask deploy []
22+
(comp
23+
(build-jar)
24+
(if (snapshot?)
25+
(push-snapshot)
26+
(push-release))))

0 commit comments

Comments
 (0)