Skip to content

Commit 5412d0e

Browse files
committed
Release 0.0.18
1 parent 9f0f527 commit 5412d0e

File tree

4 files changed

+18
-11
lines changed

4 files changed

+18
-11
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change Log
22

3+
## [0.0.18] - 2019-08-26
4+
5+
### Changed
6+
7+
* Removed support for nREPL 0.2.x.
8+
* Removed hard dep on Clojure.
9+
310
## [0.0.17] - 2018-09-01
411

512
### Added

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@ provides a very flexible Sayid API.
4747

4848
Add this to the dependencies in your project.clj or lein profiles.clj:
4949

50-
[com.billpiel/sayid "0.0.17"]
50+
[com.billpiel/sayid "0.0.18"]
5151

5252
To use the bundled nREPL middleware, you'll want to include Sayid as a
5353
plug-in. Here's an example of a bare-bones profiles.clj that works for
5454
me:
5555

5656
```clojure
57-
{:user {:plugins [[com.billpiel/sayid "0.0.17"]]}}
57+
{:user {:plugins [[com.billpiel/sayid "0.0.18"]]}}
5858
```
5959

6060
### Clojure CLI - deps.edn
@@ -65,7 +65,7 @@ tools.deps config directory (often `$HOME/.clojure`).
6565

6666
```clojure
6767
{:deps
68-
{com.billpiel/sayid {:mvn/version "0.0.17"}}}
68+
{com.billpiel/sayid {:mvn/version "0.0.18"}}}
6969
```
7070

7171
### Emacs Integration
@@ -89,9 +89,9 @@ dependency manually. Here's an example of a bare-bones profiles.clj
8989
that works for me:
9090

9191
```clojure
92-
{:user {:plugins [[cider/cider-nrepl "0.19.0"]
93-
[com.billpiel/sayid "0.0.17"]]
94-
:dependencies [[nrepl/nrepl "0.5.3"]]}}
92+
{:user {:plugins [[cider/cider-nrepl "0.21.0"]
93+
[com.billpiel/sayid "0.0.18"]]
94+
:dependencies [[nrepl/nrepl "0.6.0"]]}}
9595
```
9696

9797
Usually you'll want to use the latest versions of `cider-nrepl` and nREPL here.

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject com.billpiel/sayid "0.0.18-SNAPSHOT"
1+
(defproject com.billpiel/sayid "0.0.18"
22
:description "Sayid is a library for debugging and profiling clojure code."
33
:url "https://github.com/clojure-emacs/sayid"
44
:scm {:name "git" :url "https://github.com/clojure-emacs/sayid"}

src/el/sayid.el

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
;;; sayid.el --- sayid nREPL middleware client
22

3-
;; Copyright (c) 2016-2018 Bill Piel
3+
;; Copyright (c) 2016-2019 Bill Piel, Bozhidar Batsov
44

55
;; Author: Bill Piel <bill@billpiel.com>
6-
;; Version: 0.0.17
6+
;; Version: 0.0.18
77
;; URL: https://github.com/clojure-emacs/sayid
8-
;; Package-Requires: ((cider "0.14.0"))
8+
;; Package-Requires: ((cider "0.21.0"))
99

1010
;; Licensed under the Apache License, Version 2.0 (the "License");
1111
;; you may not use this file except in compliance with the License.
@@ -46,7 +46,7 @@
4646
:group 'sayid
4747
:type 'boolean)
4848

49-
(defconst sayid-version "0.0.17")
49+
(defconst sayid-version "0.0.18")
5050

5151
(defface sayid-int-face '((t :inherit default))
5252
"Sayid integer face"

0 commit comments

Comments
 (0)