Skip to content

Commit d16ab93

Browse files
committed
update for release
1 parent 7298390 commit d16ab93

2 files changed

Lines changed: 13 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
## [1.2.1] - 2021-12-10
11+
12+
### Changed
13+
- Bumped all testing deps to latest (particularly log4j)
14+
1015
## [1.2.0] - 2021-12-10
1116

1217
### Changed
@@ -102,6 +107,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
102107
- Initial implementation of Clojure-aware logging abstraction.
103108

104109
[Unreleased]: https://github.com/clojure/tools.logging/compare/tools.logging-1.1.0...HEAD
110+
[1.2.1]: https://github.com/clojure/tools.logging/compare/tools.logging-1.2.0...tools.logging-1.2.1
105111
[1.2.0]: https://github.com/clojure/tools.logging/compare/tools.logging-1.1.0...tools.logging-1.2.0
106112
[1.1.0]: https://github.com/clojure/tools.logging/compare/tools.logging-1.0.0...tools.logging-1.1.0
107113
[1.0.0]: https://github.com/clojure/tools.logging/compare/tools.logging-0.6.0...tools.logging-1.0.0

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@ at runtime when the `clojure.tools.logging` namespace is first loaded.
55

66
## Installation
77

8-
Lastest stable release is [1.2.0]
8+
Lastest stable release is [1.2.1]
99

1010
[CLI/`deps.edn`](https://clojure.org/reference/deps_and_cli) dependency information:
1111
```clojure
12-
org.clojure/tools.logging {:mvn/version "1.2.0"}
12+
org.clojure/tools.logging {:mvn/version "1.2.1"}
1313
```
1414

1515
Leiningen:
1616

1717
```clojure
18-
[org.clojure/tools.logging "1.2.0"]
18+
[org.clojure/tools.logging "1.2.1"]
1919
```
2020

2121
Maven:
@@ -24,14 +24,14 @@ Maven:
2424
<dependency>
2525
<groupId>org.clojure</groupId>
2626
<artifactId>tools.logging</artifactId>
27-
<version>1.2.0</version>
27+
<version>1.2.1</version>
2828
</dependency>
2929
```
3030

3131
Gradle:
3232

3333
```clojure
34-
compile "org.clojure:tools.logging:1.2.0"
34+
compile "org.clojure:tools.logging:1.2.1"
3535
```
3636

3737

@@ -137,12 +137,12 @@ will end up printing the data map.
137137

138138
## License
139139

140-
Copyright © 2009 Alex Taggart
140+
Copyright © 2009-2021 Rich Hickey, Alex Taggart, and contributors
141141

142142
Licensed under the EPL. (See the file epl.html.)
143143

144144

145-
[1.2.0]: https://github.com/clojure/tools.logging/tree/tools.logging-1.2.0
145+
[1.2.1]: https://github.com/clojure/tools.logging/tree/tools.logging-1.2.1
146146
[Leiningen example]: https://github.com/technomancy/leiningen/blob/master/doc/TUTORIAL.md#setting-jvm-options
147147
[SLF4J]: http://www.slf4j.org/
148148
[Apache Commons Logging]: https://commons.apache.org/logging

0 commit comments

Comments
 (0)