File tree Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 1.2.0] - 2021-12-10
11
+
12
+ ### Changed
13
+ - Bumped all testing deps to latest (particularly log4j)
14
+
10
15
## [ 1.1.0] - 2020-04-25
11
16
### Added
12
17
- Add implementation of ` spyf ` to ` clojure.tools.logging.readable ` .
@@ -97,6 +102,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
97
102
- Initial implementation of Clojure-aware logging abstraction.
98
103
99
104
[ Unreleased ] : https://github.com/clojure/tools.logging/compare/tools.logging-1.1.0...HEAD
105
+ [ 1.2.0 ] : https://github.com/clojure/tools.logging/compare/tools.logging-1.1.0...tools.logging-1.2.0
100
106
[ 1.1.0 ] : https://github.com/clojure/tools.logging/compare/tools.logging-1.0.0...tools.logging-1.1.0
101
107
[ 1.0.0 ] : https://github.com/clojure/tools.logging/compare/tools.logging-0.6.0...tools.logging-1.0.0
102
108
[ 0.6.0 ] : https://github.com/clojure/tools.logging/compare/tools.logging-0.5.0...tools.logging-0.6.0
Original file line number Diff line number Diff line change @@ -5,17 +5,17 @@ at runtime when the `clojure.tools.logging` namespace is first loaded.
5
5
6
6
## Installation
7
7
8
- Lastest stable release is [ 1.1 .0]
8
+ Lastest stable release is [ 1.2 .0]
9
9
10
10
[ CLI/` deps.edn ` ] ( https://clojure.org/reference/deps_and_cli ) dependency information:
11
11
``` clojure
12
- org.clojure/tools.logging {:mvn/version " 1.1 .0" }
12
+ org.clojure/tools.logging {:mvn/version " 1.2 .0" }
13
13
```
14
14
15
15
Leiningen:
16
16
17
17
``` clojure
18
- [org.clojure/tools.logging " 1.1 .0" ]
18
+ [org.clojure/tools.logging " 1.2 .0" ]
19
19
```
20
20
21
21
Maven:
@@ -24,14 +24,14 @@ Maven:
24
24
<dependency >
25
25
<groupId >org.clojure</groupId >
26
26
<artifactId >tools.logging</artifactId >
27
- <version >1.1 .0</version >
27
+ <version >1.2 .0</version >
28
28
</dependency >
29
29
```
30
30
31
31
Gradle:
32
32
33
33
``` clojure
34
- compile " org.clojure:tools.logging:1.1 .0"
34
+ compile " org.clojure:tools.logging:1.2 .0"
35
35
```
36
36
37
37
@@ -142,7 +142,7 @@ Copyright © 2009 Alex Taggart
142
142
Licensed under the EPL. (See the file epl.html.)
143
143
144
144
145
- [ 1.1 .0 ] : https://github.com/clojure/tools.logging/tree/tools.logging-1.1 .0
145
+ [ 1.2 .0 ] : https://github.com/clojure/tools.logging/tree/tools.logging-1.2 .0
146
146
[ Leiningen example ] : https://github.com/technomancy/leiningen/blob/master/doc/TUTORIAL.md#setting-jvm-options
147
147
[ SLF4J ] : http://www.slf4j.org/
148
148
[ Apache Commons Logging ] : https://commons.apache.org/logging
You can’t perform that action at this time.
0 commit comments