Skip to content

Commit 1fb53f9

Browse files
committed
Prepare for 1.1.0 release
1 parent 6748dcb commit 1fb53f9

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

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+
## [1.1.0] - 2020-04-25
911
### Added
1012
- Add implementation of `spyf` to `clojure.tools.logging.readable`.
1113

@@ -94,7 +96,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
9496
### Added
9597
- Initial implementation of Clojure-aware logging abstraction.
9698

97-
[Unreleased]: https://github.com/clojure/tools.logging/compare/tools.logging-1.0.0...HEAD
99+
[Unreleased]: https://github.com/clojure/tools.logging/compare/tools.logging-1.1.0...HEAD
100+
[1.1.0]: https://github.com/clojure/tools.logging/compare/tools.logging-1.0.0...tools.logging-1.1.0
98101
[1.0.0]: https://github.com/clojure/tools.logging/compare/tools.logging-0.6.0...tools.logging-1.0.0
99102
[0.6.0]: https://github.com/clojure/tools.logging/compare/tools.logging-0.5.0...tools.logging-0.6.0
100103
[0.5.0]: https://github.com/clojure/tools.logging/compare/tools.logging-0.4.1...tools.logging-0.5.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 [1.0.0]
8+
Lastest stable release is [1.1.0]
99

1010
Leiningen:
1111

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

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

2626
Gradle:
2727

2828
```clojure
29-
compile "org.clojure:tools.logging:1.0.0"
29+
compile "org.clojure:tools.logging:1.1.0"
3030
```
3131

3232

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

108108

109-
[1.0.0]: https://github.com/clojure/tools.logging/tree/tools.logging-1.0.0
109+
[1.1.0]: https://github.com/clojure/tools.logging/tree/tools.logging-1.1.0
110110
[Leiningen example]: https://github.com/technomancy/leiningen/blob/master/doc/TUTORIAL.md#setting-jvm-options
111111
[SLF4J]: http://www.slf4j.org/
112112
[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 "1.0.1-SNAPSHOT"
1+
(defproject org.clojure/tools.logging "1.1.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)