Skip to content

Commit

Permalink
[release] v0.6.0
Browse files Browse the repository at this point in the history
Formally bump release version to 0.6.0 and cut a release on Clojars.
  • Loading branch information
David Jarvis committed Mar 9, 2019
1 parent 8683aa2 commit b47d9e0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## 0.6.0
* Migrates to `nrepl` from `clojure.tools.nrepl`
* Migrates to `nrepl` from `clojure.tools.nrepl`. This is a pretty significant change and was mostly enabled by a LOT of upstream work from the Leiningen, Puget/Whidbey, and nREPL developers and maintainers. It is likely not backwards-compatible with earlier versions of Leiningen.

## 0.5.4
* Bump puget dependency. AFAIK this makes us compatible with the new nREPL.
Expand Down
2 changes: 1 addition & 1 deletion LEGACY_SUPPORT.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ As of Ultra `0.4.0`, Clojure 1.7.x is required due to reader conditional usage i
Leiningen version 2.5.2+
JDK 8

Note that versions of Ultra prior to 0.5.0 will not play nicely with current alpha releases of Clojure 1.9 (and therefore are unlikely to play nicely with Clojure 1.9 when it is finally released).
Note that versions of Ultra prior to 0.5.0 will not play nicely with Clojure 1.9.

11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ Ultra is the rare piece of essentially "finished" software. I've ironed out most
To install Ultra, just add the following to your `~/.lein/profiles.clj`

```clojure
{:user {:plugins [[venantius/ultra "0.6.0-SNAPSHOT"]]}}
{:user {:plugins [[venantius/ultra "0.6.0"]]}}
```

### Requirements

Lein 2.9.0
JDK 8
Clojure 1.7+
Lein 2.9.0
JDK 8
Clojure 1.7+

If you want to use something older, see [LEGACY_SUPPORT.md](./LEGACY_SUPPORT.md)

Expand Down Expand Up @@ -137,10 +137,9 @@ Ultra wraps, calls, or draws inspiration from the following libraries, and their
- [greglook/whidbey](https://github.com/greglook/whidbey) - Puget nREPL middleware
- [jaycfields/expectations](https://github.com/jaycfields/expectations) - The Expectations testing library
- [pjstadig/humane-test-output](https://github.com/pjstadig/humane-test-output) - Diffs in tests using clojure.test
- [zcaudate/vinyasa](https://github.com/zcaudate/vinyasa) - Give your Clojure workflow more flow

## License

In some cases, I've borrowed code snippets from libraries above and re-written them. Where that is the case, the Copyright of the original author[s] remains in effect. Any modifications to their code, as well as all original content, is Copyright © 2018 W. David Jarvis.
In some cases, I've borrowed code snippets from libraries above and re-written them. Where that is the case, the Copyright of the original author[s] remains in effect. Any modifications to their code, as well as all original content, is Copyright © 2019 W. David Jarvis.

Distributed under the Eclipse Public License 1.0, the same as Clojure.
4 changes: 2 additions & 2 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject venantius/ultra "0.6.0-SNAPSHOT"
(defproject venantius/ultra "0.6.0"
:description "Ultra: A Leiningen plugin for a superior development environment"
:url "http://github.com/venantius/ultra"
:license {:name "Eclipse Public License"
Expand All @@ -15,5 +15,5 @@
[org.clojure/clojure "1.8.0"]]}}
:test-selectors {:default (complement :demo)
:demo :demo}
:min-lein-version "2.5.2"
:min-lein-version "2.9.0"
:eval-in-leiningen true)

0 comments on commit b47d9e0

Please sign in to comment.