Skip to content

Commit 0f15fd5

Browse files
authored
Merge pull request #177 from prometheus/beorn7/release
Cut v1.4.0
2 parents 48e4461 + dede087 commit 0f15fd5

File tree

6 files changed

+13
-6
lines changed

6 files changed

+13
-6
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ executors:
66
# Whenever the Go version is updated here, .promu.yml should also be updated.
77
golang:
88
docker:
9-
- image: cimg/go:1.21
9+
- image: cimg/go:1.22
1010
jobs:
1111
test:
1212
executor: golang

.promu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
go:
33
# Whenever the Go version is updated here
44
# .circle/config.yml should also be updated.
5-
version: 1.21
5+
version: 1.22
66
repository:
77
path: github.com/prometheus/prom2json
88
build:

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@
99
* [ENHANCEMENT]
1010
* [BUGFIX]
1111

12+
## 1.4.0 / 2024-07-11
13+
14+
* [FEATURE] Support native histograms. #169
15+
* [FEATURE] Support float histograms (classic and native). #176
16+
17+
_This release also comes with updated dependencies, and the pre-built binaries are using Go1.22.5., both to avoid potential security issues. (Note that this is just precaution. We do not know of any relevant vulnerabilities in v1.3.3.)_
18+
1219
## 1.3.3 / 2023-05-25
1320

1421
_There are no code changes in this release. It merely comes with updated

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.3
1+
1.4.0

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require (
77
github.com/matttproud/golang_protobuf_extensions v1.0.4
88
github.com/prometheus/client_model v0.6.1
99
github.com/prometheus/common v0.55.0
10-
github.com/prometheus/prometheus v0.53.0
10+
github.com/prometheus/prometheus v0.53.1
1111
)
1212

1313
require (

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p
1515
github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY=
1616
github.com/prometheus/common v0.55.0 h1:KEi6DK7lXW/m7Ig5i47x0vRzuBsHuvJdi5ee6Y3G1dc=
1717
github.com/prometheus/common v0.55.0/go.mod h1:2SECS4xJG1kd8XF9IcM1gMX6510RAEL65zxzNImwdc8=
18-
github.com/prometheus/prometheus v0.53.0 h1:vOnhpUKrDv954jnVBvhG/ZQJ3kqscnKI+Hbdwo2tAhc=
19-
github.com/prometheus/prometheus v0.53.0/go.mod h1:RZDkzs+ShMBDkAPQkLEaLBXpjmDcjhNxU2drUVPgKUU=
18+
github.com/prometheus/prometheus v0.53.1 h1:B0xu4VuVTKYrIuBMn/4YSUoIPYxs956qsOfcS4rqCuA=
19+
github.com/prometheus/prometheus v0.53.1/go.mod h1:RZDkzs+ShMBDkAPQkLEaLBXpjmDcjhNxU2drUVPgKUU=
2020
github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg=
2121
github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
2222
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=

0 commit comments

Comments
 (0)