Skip to content

Commit a5e31ee

Browse files
committed
Update files due to 0.6.0 release
1 parent 24fda95 commit a5e31ee

3 files changed

Lines changed: 10 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66
([despite its flaws](https://www.youtube.com/watch?v=oyLBGkS5ICk)).
77

88
## [Unreleased]
9+
10+
## [0.6.0] - 2020-02-07
911
### Added
1012
- Add support for explicitly selecting a logger factory by setting the
1113
`clojure.tools.logging.factory` system property.
@@ -76,7 +78,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7678
### Added
7779
- Initial implementation of Clojure-aware logging abstraction.
7880

79-
[Unreleased]: https://github.com/clojure/tools.logging/compare/tools.logging-0.5.0...HEAD
81+
[Unreleased]: https://github.com/clojure/tools.logging/compare/tools.logging-0.6.0...HEAD
82+
[0.6.0]: https://github.com/clojure/tools.logging/compare/tools.logging-0.5.0...tools.logging-0.6.0
8083
[0.5.0]: https://github.com/clojure/tools.logging/compare/tools.logging-0.4.1...tools.logging-0.5.0
8184
[0.4.1]: https://github.com/clojure/tools.logging/compare/tools.logging-0.4.0...tools.logging-0.4.1
8285
[0.4.0]: https://github.com/clojure/tools.logging/compare/tools.logging-0.3.1...tools.logging-0.4.0

README.md

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

66
## Installation
77

8-
Lastest stable release is [0.5.0]
8+
Lastest stable release is [0.6.0]
99

1010
Leiningen:
1111

1212
```clojure
13-
[org.clojure/tools.logging "0.5.0"]
13+
[org.clojure/tools.logging "0.6.0"]
1414
```
1515

1616
Maven:
@@ -19,14 +19,14 @@ Maven:
1919
<dependency>
2020
<groupId>org.clojure</groupId>
2121
<artifactId>tools.logging</artifactId>
22-
<version>0.5.0</version>
22+
<version>0.6.0</version>
2323
</dependency>
2424
```
2525

2626
Gradle:
2727

2828
```clojure
29-
compile "org.clojure:tools.logging:0.5.0"
29+
compile "org.clojure:tools.logging:0.6.0"
3030
```
3131

3232

@@ -105,7 +105,7 @@ Copyright © 2009 Alex Taggart
105105
Licensed under the EPL. (See the file epl.html.)
106106

107107

108-
[0.5.0]: https://github.com/clojure/tools.logging/tree/tools.logging-0.5.0
108+
[0.6.0]: https://github.com/clojure/tools.logging/tree/tools.logging-0.6.0
109109
[Leiningen example]: https://github.com/technomancy/leiningen/blob/master/doc/TUTORIAL.md#setting-jvm-options
110110
[SLF4J]: http://www.slf4j.org/
111111
[Apache Commons Logging]: https://commons.apache.org/logging

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject org.clojure/tools.logging "0.5.1-SNAPSHOT"
1+
(defproject org.clojure/tools.logging "0.6.1-SNAPSHOT"
22
:description "Clojure logging API."
33
:url "https://github.com/clojure/tools.logging"
44
:license {:name "Eclipse Public License"

0 commit comments

Comments
 (0)