Skip to content

Commit

Permalink
v2.2.0 2020-09-14
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaoussanis committed Sep 14, 2020
1 parent 26f1ac0 commit fb28992
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 6 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md)
## v2.2.0 - 2020 Sep 14

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

> This is a major feature release. Should be **non-breaking**.
> See [here](https://github.com/ptaoussanis/encore#recommended-steps-after-any-significant-dependency-update) for recommended steps when updating any Clojure/Script dependencies.
**Changes** since `v2.1.0`:

* [DEPRECATED] `set-min-level!`, `set-ns-pattern!`, `with-min-level`, `with-ns-pattern`: prefer just using the relevant dynamic vars directly.

**New** since `v2.1.0`:

* `*min-level*` can now be an int, or a `[[<ns-pattern> <int>] ...]` for ns-specific levels.
* `*min-level*` init val can now be set via `taoensso.tufte.min-level.edn` JVM property, or `TAOENSSO_TUFTE_MIN_LEVEL_EDN` env var.
* `*ns-filter*` can now be a pred fn, or an ns-pattern (which will be auto compiled to a pred fn).
* `*ns-filter*` init val can now be set via `taoensso.tufte.ns-pattern.edn` JVM property, or `TAOENSSO_TUFTE_NS_PATTERN_EDN` env var.
* Docstring improvements.


## v2.2.0-RC1 - 2020 Aug 29

```clojure
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
**[CHANGELOG]** | [API] | current [Break Version]:

```clojure
[com.taoensso/tufte "2.1.0"] ; Stable
[com.taoensso/tufte "2.2.0-RC1"] ; Dev, see CHANGELOG for details
[com.taoensso/tufte "2.2.0"] ; See CHANGELOG for details
```

> See [here](https://taoensso.com/clojure/backers) if you're interested in helping support my open-source work, thanks! - Peter Taoussanis
Expand Down Expand Up @@ -64,7 +63,7 @@
Add the necessary dependency to your project:

```clojure
[com.taoensso/tufte "2.1.0"]
[com.taoensso/tufte "2.2.0"]
```

And setup your namespace imports:
Expand Down
4 changes: 2 additions & 2 deletions examples/clj/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject com.taoensso.examples/tufte "2.2.0-RC1"
(defproject com.taoensso.examples/tufte "2.2.0"
:description "Tufte example web-app project"
:url "https://github.com/ptaoussanis/tufte"

Expand All @@ -15,6 +15,6 @@
[ring/ring-defaults "0.3.2"]
[compojure "1.6.2"]
[hiccup "1.0.5"]
[com.taoensso/tufte "2.2.0-RC1"]]
[com.taoensso/tufte "2.2.0"]]

:main example.server)
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 "2.2.0-RC1"
(defproject com.taoensso/tufte "2.2.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 fb28992

Please sign in to comment.