Skip to content

Commit

Permalink
Release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
arichiardi committed Feb 5, 2017
1 parent 22a80aa commit c9cc6a2
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
11 changes: 8 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,22 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [0.1.2](https://github.com/Lambda-X/lambone/compare/0.1.1...0.1.2)
## [0.2.0](https://github.com/boot-clj/boot-cljs-devtools/compare/0.1.2...0.2.0)

- _\*API breaking\*_ Task split: now there is one task for `cljs-devtools` and one for `dirac` (thank you @pepe)
- Throw if required depedencies are missing for the called task

## [0.1.2](https://github.com/boot-clj/boot-cljs-devtools/compare/0.1.1...0.1.2)

- Support for Dirac 0.7.x

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

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

## [0.1.0](https://github.com/Lambda-X/lambone/compare/af649ed...0.1.0)
## [0.1.0](https://github.com/boot-clj/boot-cljs-devtools/compare/af649ed...0.1.0)
### Initial Release
- First version of the jupl/boot-cljs-devtools.
11 changes: 10 additions & 1 deletion build.boot
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

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

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

(bootlaces! +version+)

Expand All @@ -15,3 +15,12 @@
:url "https://github.com/boot-clj/boot-cljs-devtools"
:scm {:url "https://github.com/boot-clj/boot-cljs-devtools"}
:license {"MIT" "https://opensource.org/licenses/MIT"}})

(def snapshot? #(.endsWith +version+ "-SNAPSHOT"))

(deftask deploy []
(comp
(build-jar)
(if (snapshot?)
(push-snapshot)
(push-release))))

0 comments on commit c9cc6a2

Please sign in to comment.