File tree Expand file tree Collapse file tree 3 files changed +39
-9
lines changed
Expand file tree Collapse file tree 3 files changed +39
-9
lines changed Original file line number Diff line number Diff line change 1+ # Version 0.1.9
2+
3+ # Breaking Changes
4+
5+ - clojars group change: move from iapetos to ` clj-commons/iapetos ` (https://clojars.org/clj-commons/iapetos )
6+
7+ This change was needed to continue publishing new clojars to ` clj-commons ` after project migration.
8+
9+ # Changes:
10+
11+ - update deps
12+
13+ - introduce changelog file.md
14+
15+
16+ # Version 0.1.8
17+
18+ # Breaking Changes
19+
20+ None.
21+
22+ # Deprecation
23+
24+ The :lazy? flag on collectors is now deprecated, use register-lazy instead.
25+
26+ # Features
27+
28+ upgrades the Prometheus Java dependencies to version 0.2.0.
29+ introduces register-lazy as a replacement for the :lazy? flag on collectors.
30+ introduces clear and unregister functions to remove collectors from a registry they were previously added to (see #10).
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ functionality while retaining low-level flexibility for tackling more complex
66tasks.
77
88[ ![ CircleCI] ( https://circleci.com/gh/clj-commons/iapetos.svg?style=svg )] ( https://circleci.com/gh/clj-commons/iapetos )
9- [ ![ Clojars Project] ( https://img.shields.io/clojars/v/iapetos.svg )] ( https://clojars.org/iapetos )
9+ [ ![ Clojars Project] ( https://img.shields.io/clojars/v/clj-commons/ iapetos.svg )] ( https://clojars.org/clj-commons /iapetos )
1010[ ![ codecov] ( https://codecov.io/gh/xsc/iapetos/branch/master/graph/badge.svg )] ( https://codecov.io/gh/xsc/iapetos )
1111
1212[ java-client ] : https://github.com/prometheus/client_java
Original file line number Diff line number Diff line change 1- (defproject iapetos " 0.1.9-SNAPSHOT "
1+ (defproject clj-commons / iapetos " 0.1.9"
22 :description " A Clojure Prometheus Client"
33 :url " https://github.com/clj-commons/iapetos"
44 :license {:name " MIT License"
55 :url " https://opensource.org/licenses/MIT"
6- :year 2016
6+ :year 2019
77 :key " mit" }
8- :dependencies [[org.clojure/clojure " 1.8 .0" :scope " provided" ]
9- [io.prometheus/simpleclient " 0.2 .0" ]
10- [io.prometheus/simpleclient_common " 0.2 .0" ]
11- [io.prometheus/simpleclient_pushgateway " 0.2 .0" ]
12- [io.prometheus/simpleclient_hotspot " 0.2 .0" :scope " provided" ]]
8+ :dependencies [[org.clojure/clojure " 1.10 .0" :scope " provided" ]
9+ [io.prometheus/simpleclient " 0.6 .0" ]
10+ [io.prometheus/simpleclient_common " 0.6 .0" ]
11+ [io.prometheus/simpleclient_pushgateway " 0.6 .0" ]
12+ [io.prometheus/simpleclient_hotspot " 0.6 .0" :scope " provided" ]]
1313 :profiles {:dev
1414 {:dependencies [[org.clojure/test.check " 0.9.0" ]
15- [aleph " 0.4.4 " ]]
15+ [aleph " 0.4.6 " ]]
1616 :global-vars {*warn-on-reflection* true }}
1717 :codox
1818 {:plugins [[lein-codox " 0.10.0" ]]
You can’t perform that action at this time.
0 commit comments