Skip to content

Commit

Permalink
Bump to v4.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
deadtrickster committed Nov 23, 2023
1 parent 9186c8c commit 06c2672
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Copyright (c) 2016,2017 Ilya Khaprov <<[email protected]>>.

__Version:__ 4.10.0
__Version:__ 4.11.0

[![Hex.pm](https://img.shields.io/hexpm/v/prometheus.svg?maxAge=2592000?style=plastic)](https://hex.pm/packages/prometheus)
[![Hex.pm](https://img.shields.io/hexpm/dt/prometheus.svg?maxAge=2592000)](https://hex.pm/packages/prometheus)
Expand Down
2 changes: 1 addition & 1 deletion doc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Copyright (c) 2016,2017 Ilya Khaprov <<[email protected]>>.

__Version:__ 4.10.0
__Version:__ 4.11.0

[![Hex.pm](https://img.shields.io/hexpm/v/prometheus.svg?maxAge=2592000?style=plastic)](https://hex.pm/packages/prometheus)
[![Hex.pm](https://img.shields.io/hexpm/dt/prometheus.svg?maxAge=2592000)](https://hex.pm/packages/prometheus)
Expand Down
2 changes: 1 addition & 1 deletion doc/overview.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@copyright 2016,2017 Ilya Khaprov <<[email protected]>>.
@title Prometheus.io client for Erlang
@version 4.10.0
@version 4.11.0

@doc
[![Hex.pm](https://img.shields.io/hexpm/v/prometheus.svg?maxAge=2592000?style=plastic)](https://hex.pm/packages/prometheus)
Expand Down
14 changes: 13 additions & 1 deletion doc/prometheus_text_format.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ Example output:


<table width="100%" border="1" cellspacing="0" cellpadding="2" summary="function index"><tr><td valign="top"><a href="#content_type-0">content_type/0</a></td><td>
Returns content type of the latest [text format](http://bit.ly/2cxSuJP).</td></tr><tr><td valign="top"><a href="#format-0">format/0</a></td><td>
Returns content type of the latest [text format](http://bit.ly/2cxSuJP).</td></tr><tr><td valign="top"><a href="#escape_label_value-1">escape_label_value/1</a></td><td>
Escapes the backslash (\), double-quote ("), and line feed (\n) characters.</td></tr><tr><td valign="top"><a href="#format-0">format/0</a></td><td>
Formats <code>default</code> registry using the latest text format.</td></tr><tr><td valign="top"><a href="#format-1">format/1</a></td><td>
Formats <code>Registry</code> using the latest text format.</td></tr><tr><td valign="top"><a href="#render_labels-1">render_labels/1</a></td><td></td></tr></table>

Expand All @@ -57,6 +58,17 @@ content_type() -&gt; binary()

Returns content type of the latest [text format](http://bit.ly/2cxSuJP).

<a name="escape_label_value-1"></a>

### escape_label_value/1 ###

<pre><code>
escape_label_value(LValue::binary() | iolist()) -&gt; binary()
</code></pre>
<br />

Escapes the backslash (\), double-quote ("), and line feed (\n) characters

<a name="format-0"></a>

### format/0 ###
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule Prometheus.Mixfile do

def project do
[app: :prometheus,
version: "4.10.0",
version: "4.11.0",
description: description(),
package: package(),
deps: deps()]
Expand Down
2 changes: 1 addition & 1 deletion src/prometheus.app.src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application, prometheus,
[{description, "Prometheus.io client in Erlang"},
{vsn, "4.10.0"},
{vsn, "4.11.0"},
{registered, []},
{mod, { prometheus, []}},
{applications,
Expand Down

0 comments on commit 06c2672

Please sign in to comment.