Skip to content

Commit

Permalink
v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaoussanis committed Mar 21, 2018
1 parent 4f09302 commit a06c1f5
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 10 deletions.
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,22 @@
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md)
## v1.4.0 - 2018 Mar 21

```clojure
[com.taoensso/tufte "1.4.0"]
```

> This is a minor, non-breaking feature release
* **Impl**: tweak `format-stats` output spacing (@kassapo)

## v1.3.0 - 2018 Mar 11

```clojure
[com.taoensso/tufte "1.3.0"]
```

> This is a non-breaking feature release.
> This is a minor, non-breaking feature release
* [#21] **New**: support minutes in `format-stats` table (@austinhaas)

Expand All @@ -16,7 +26,7 @@
[com.taoensso/tufte "1.2.0"]
```

> This is a non-breaking feature release.
> This is a minor, non-breaking feature release
* **New**: Add low-level `capture-time!` util fn
* **Impl**: Bump dependencies, incl. ClojureScript
Expand Down
16 changes: 9 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
**[CHANGELOG]** | [API] | current [Break Version]:

```clojure
[com.taoensso/tufte "1.3.0"] ; Please see CHANGELOG for details
[com.taoensso/tufte "1.4.0"] ; Please see CHANGELOG for details
```

> Please consider helping to [support my continued open-source Clojure/Script work]?
Expand Down Expand Up @@ -43,11 +43,13 @@

;; The following will be printed to *out*:
;;
;; pId nCalls Min Max MAD Mean Time% Time
;; :get-y 5 171.68ms 940.84ms 264.82ms 541.28ms 52 2.71s
;; :get-x 5 502.3ms 505.07ms 1.17ms 503.4ms 48 2.52s
;; Clock Time 100 5.22s
;; Accounted Time 100 5.22s
;; pId nCalls Min Max MAD Mean Time% Time
;;
;; :get-y 5 171.68ms 940.84ms 264.82ms 541.28ms 52 2.71s
;; :get-x 5 502.30ms 505.07ms 1.17ms 503.40ms 48 2.52s
;;
;; Clock Time 100 5.22s
;; Accounted Time 100 5.22s
```

## Features
Expand All @@ -64,7 +66,7 @@
Add the necessary dependency to your project:

```clojure
[com.taoensso/tufte "1.3.0"]
[com.taoensso/tufte "1.4.0"]
```

And setup your namespace imports:
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject com.taoensso/tufte "1.3.0"
(defproject com.taoensso/tufte "1.4.0"
:author "Peter Taoussanis <https://www.taoensso.com>"
:description "Simple profiling and performance monitoring for Clojure/Script"
:url "https://github.com/ptaoussanis/tufte"
Expand Down

0 comments on commit a06c1f5

Please sign in to comment.