File tree Expand file tree Collapse file tree 4 files changed +10
-6
lines changed Expand file tree Collapse file tree 4 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## [ 0.1.0] - 2020-09-02
4
+
5
+ * [ #57 ] ( https://github.com/clojure-emacs/sayid/issues/57 ) : Fix version extraction logic.
6
+
3
7
## [ 0.0.19] - 2020-08-20
4
8
5
9
### Fixed
Original file line number Diff line number Diff line change 1
- VERSION: =0.0.19
1
+ VERSION: =0.1.0
2
2
PACKAGE_NAME: =sayid-$(VERSION )
3
3
PACKAGE_DIR: =/tmp/$(PACKAGE_NAME )
4
4
Original file line number Diff line number Diff line change @@ -45,14 +45,14 @@ provides a very flexible Sayid API.
45
45
46
46
Add this to the dependencies in your project.clj or lein profiles.clj:
47
47
48
- [com.billpiel/sayid "0.0.19 "]
48
+ [com.billpiel/sayid "0.1.0 "]
49
49
50
50
To use the bundled nREPL middleware, you'll want to include Sayid as a
51
51
plug-in. Here's an example of a bare-bones profiles.clj that works for
52
52
me:
53
53
54
54
``` clojure
55
- {:user {:plugins [[com.billpiel/sayid " 0.0.19 " ]]}}
55
+ {:user {:plugins [[com.billpiel/sayid " 0.1.0 " ]]}}
56
56
```
57
57
58
58
### Clojure CLI - deps.edn
@@ -63,7 +63,7 @@ tools.deps config directory (often `$HOME/.clojure`).
63
63
64
64
``` clojure
65
65
{:deps
66
- {com.billpiel/sayid {:mvn/version " 0.0.19 " }}}
66
+ {com.billpiel/sayid {:mvn/version " 0.1.0 " }}}
67
67
```
68
68
69
69
### Emacs Integration
@@ -88,7 +88,7 @@ that works for me:
88
88
89
89
``` clojure
90
90
{:user {:plugins [[cider/cider-nrepl " 0.25.3" ]
91
- [com.billpiel/sayid " 0.0.19 " ]]
91
+ [com.billpiel/sayid " 0.1.0 " ]]
92
92
:dependencies [[nrepl/nrepl " 0.7.0" ]]}}
93
93
```
94
94
Original file line number Diff line number Diff line change 1
- (defproject com.billpiel /sayid " 0.0.19 "
1
+ (defproject com.billpiel /sayid " 0.1.0 "
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" }
You can’t perform that action at this time.
0 commit comments