Skip to content

Commit 9858378

Browse files
committed
Release 0.1.0
1 parent a4c4ba9 commit 9858378

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

CHANGELOG.md

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

3+
## [0.1.0] - 2020-09-02
4+
5+
* [#57](https://github.com/clojure-emacs/sayid/issues/57): Fix version extraction logic.
6+
37
## [0.0.19] - 2020-08-20
48

59
### Fixed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION:=0.0.19
1+
VERSION:=0.1.0
22
PACKAGE_NAME:=sayid-$(VERSION)
33
PACKAGE_DIR:=/tmp/$(PACKAGE_NAME)
44

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,14 @@ provides a very flexible Sayid API.
4545

4646
Add this to the dependencies in your project.clj or lein profiles.clj:
4747

48-
[com.billpiel/sayid "0.0.19"]
48+
[com.billpiel/sayid "0.1.0"]
4949

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

5454
```clojure
55-
{:user {:plugins [[com.billpiel/sayid "0.0.19"]]}}
55+
{:user {:plugins [[com.billpiel/sayid "0.1.0"]]}}
5656
```
5757

5858
### Clojure CLI - deps.edn
@@ -63,7 +63,7 @@ tools.deps config directory (often `$HOME/.clojure`).
6363

6464
```clojure
6565
{:deps
66-
{com.billpiel/sayid {:mvn/version "0.0.19"}}}
66+
{com.billpiel/sayid {:mvn/version "0.1.0"}}}
6767
```
6868

6969
### Emacs Integration
@@ -88,7 +88,7 @@ that works for me:
8888

8989
```clojure
9090
{:user {:plugins [[cider/cider-nrepl "0.25.3"]
91-
[com.billpiel/sayid "0.0.19"]]
91+
[com.billpiel/sayid "0.1.0"]]
9292
:dependencies [[nrepl/nrepl "0.7.0"]]}}
9393
```
9494

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.19"
1+
(defproject com.billpiel/sayid "0.1.0"
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"}

0 commit comments

Comments
 (0)