Skip to content

Commit c4e0144

Browse files
authored
Merge pull request #30 from MalloZup/update-dep
WIP: prepare release 0.1.9
2 parents 3e4ee23 + 859e9f3 commit c4e0144

File tree

3 files changed

+39
-9
lines changed

3 files changed

+39
-9
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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).

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ functionality while retaining low-level flexibility for tackling more complex
66
tasks.
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

project.clj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
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"]]

0 commit comments

Comments
 (0)