From b47d9e06bbf88ca7b3538ec753b2e14de892bed8 Mon Sep 17 00:00:00 2001 From: David Jarvis Date: Sat, 9 Mar 2019 10:47:55 +0000 Subject: [PATCH] [release] v0.6.0 Formally bump release version to 0.6.0 and cut a release on Clojars. --- CHANGELOG.md | 2 +- LEGACY_SUPPORT.md | 2 +- README.md | 11 +++++------ project.clj | 4 ++-- 4 files changed, 9 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 89131bb..6ec504f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/LEGACY_SUPPORT.md b/LEGACY_SUPPORT.md index acabefb..66829c5 100644 --- a/LEGACY_SUPPORT.md +++ b/LEGACY_SUPPORT.md @@ -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. diff --git a/README.md b/README.md index 1e2a5c4..9774c1c 100644 --- a/README.md +++ b/README.md @@ -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) @@ -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. diff --git a/project.clj b/project.clj index 54c9324..78cb5ba 100644 --- a/project.clj +++ b/project.clj @@ -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" @@ -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)