Skip to content

Commit

Permalink
Merge pull request #30 from MalloZup/update-dep
Browse files Browse the repository at this point in the history
WIP: prepare release 0.1.9
  • Loading branch information
MalloZup authored Jul 25, 2019
2 parents 3e4ee23 + 859e9f3 commit c4e0144
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 9 deletions.
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Version 0.1.9

# Breaking Changes

- clojars group change: move from iapetos to `clj-commons/iapetos` (https://clojars.org/clj-commons/iapetos)

This change was needed to continue publishing new clojars to `clj-commons` after project migration.

# Changes:

- update deps

- introduce changelog file.md


# Version 0.1.8

# Breaking Changes

None.

# Deprecation

The :lazy? flag on collectors is now deprecated, use register-lazy instead.

# Features

upgrades the Prometheus Java dependencies to version 0.2.0.
introduces register-lazy as a replacement for the :lazy? flag on collectors.
introduces clear and unregister functions to remove collectors from a registry they were previously added to (see #10).
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ functionality while retaining low-level flexibility for tackling more complex
tasks.

[![CircleCI](https://circleci.com/gh/clj-commons/iapetos.svg?style=svg)](https://circleci.com/gh/clj-commons/iapetos)
[![Clojars Project](https://img.shields.io/clojars/v/iapetos.svg)](https://clojars.org/iapetos)
[![Clojars Project](https://img.shields.io/clojars/v/clj-commons/iapetos.svg)](https://clojars.org/clj-commons/iapetos)
[![codecov](https://codecov.io/gh/xsc/iapetos/branch/master/graph/badge.svg)](https://codecov.io/gh/xsc/iapetos)

[java-client]: https://github.com/prometheus/client_java
Expand Down
16 changes: 8 additions & 8 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
(defproject iapetos "0.1.9-SNAPSHOT"
(defproject clj-commons/iapetos "0.1.9"
:description "A Clojure Prometheus Client"
:url "https://github.com/clj-commons/iapetos"
:license {:name "MIT License"
:url "https://opensource.org/licenses/MIT"
:year 2016
:year 2019
:key "mit"}
:dependencies [[org.clojure/clojure "1.8.0" :scope "provided"]
[io.prometheus/simpleclient "0.2.0"]
[io.prometheus/simpleclient_common "0.2.0"]
[io.prometheus/simpleclient_pushgateway "0.2.0"]
[io.prometheus/simpleclient_hotspot "0.2.0" :scope "provided"]]
:dependencies [[org.clojure/clojure "1.10.0" :scope "provided"]
[io.prometheus/simpleclient "0.6.0"]
[io.prometheus/simpleclient_common "0.6.0"]
[io.prometheus/simpleclient_pushgateway "0.6.0"]
[io.prometheus/simpleclient_hotspot "0.6.0" :scope "provided"]]
:profiles {:dev
{:dependencies [[org.clojure/test.check "0.9.0"]
[aleph "0.4.4"]]
[aleph "0.4.6"]]
:global-vars {*warn-on-reflection* true}}
:codox
{:plugins [[lein-codox "0.10.0"]]
Expand Down

0 comments on commit c4e0144

Please sign in to comment.