File tree Expand file tree Collapse file tree 4 files changed +18
-11
lines changed Expand file tree Collapse file tree 4 files changed +18
-11
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
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
+
3
10
## [ 0.0.17] - 2018-09-01
4
11
5
12
### Added
Original file line number Diff line number Diff line change @@ -47,14 +47,14 @@ provides a very flexible Sayid API.
47
47
48
48
Add this to the dependencies in your project.clj or lein profiles.clj:
49
49
50
- [com.billpiel/sayid "0.0.17 "]
50
+ [com.billpiel/sayid "0.0.18 "]
51
51
52
52
To use the bundled nREPL middleware, you'll want to include Sayid as a
53
53
plug-in. Here's an example of a bare-bones profiles.clj that works for
54
54
me:
55
55
56
56
``` clojure
57
- {:user {:plugins [[com.billpiel/sayid " 0.0.17 " ]]}}
57
+ {:user {:plugins [[com.billpiel/sayid " 0.0.18 " ]]}}
58
58
```
59
59
60
60
### Clojure CLI - deps.edn
@@ -65,7 +65,7 @@ tools.deps config directory (often `$HOME/.clojure`).
65
65
66
66
``` clojure
67
67
{:deps
68
- {com.billpiel/sayid {:mvn/version " 0.0.17 " }}}
68
+ {com.billpiel/sayid {:mvn/version " 0.0.18 " }}}
69
69
```
70
70
71
71
### Emacs Integration
@@ -89,9 +89,9 @@ dependency manually. Here's an example of a bare-bones profiles.clj
89
89
that works for me:
90
90
91
91
``` 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 " ]]}}
95
95
```
96
96
97
97
Usually you'll want to use the latest versions of ` cider-nrepl ` and nREPL here.
Original file line number Diff line number Diff line change 1
- (defproject com.billpiel /sayid " 0.0.18-SNAPSHOT "
1
+ (defproject com.billpiel /sayid " 0.0.18"
2
2
:description " Sayid is a library for debugging and profiling clojure code."
3
3
:url " https://github.com/clojure-emacs/sayid"
4
4
:scm {:name " git" :url " https://github.com/clojure-emacs/sayid" }
Original file line number Diff line number Diff line change 1
1
; ;; sayid.el --- sayid nREPL middleware client
2
2
3
- ; ; Copyright (c) 2016-2018 Bill Piel
3
+ ; ; Copyright (c) 2016-2019 Bill Piel, Bozhidar Batsov
4
4
5
5
; ; Author: Bill Piel <bill@billpiel.com>
6
- ; ; Version: 0.0.17
6
+ ; ; Version: 0.0.18
7
7
; ; URL: https://github.com/clojure-emacs/sayid
8
- ; ; Package-Requires: ((cider "0.14 .0"))
8
+ ; ; Package-Requires: ((cider "0.21 .0"))
9
9
10
10
; ; Licensed under the Apache License, Version 2.0 (the "License");
11
11
; ; you may not use this file except in compliance with the License.
46
46
:group 'sayid
47
47
:type 'boolean )
48
48
49
- (defconst sayid-version " 0.0.17 " )
49
+ (defconst sayid-version " 0.0.18 " )
50
50
51
51
(defface sayid-int-face '((t :inherit default ))
52
52
" Sayid integer face"
You can’t perform that action at this time.
0 commit comments