prometheus-client-mmap 0.20.3-aarch64-linux → 0.22.0-aarch64-linux
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +13 -0
- data/ext/fast_mmaped_file_rs/src/mmap/inner.rs +708 -0
- data/ext/fast_mmaped_file_rs/src/mmap.rs +587 -25
- data/lib/2.7/fast_mmaped_file_rs.so +0 -0
- data/lib/3.0/fast_mmaped_file_rs.so +0 -0
- data/lib/3.1/fast_mmaped_file_rs.so +0 -0
- data/lib/3.2/fast_mmaped_file_rs.so +0 -0
- data/lib/prometheus/client/version.rb +1 -1
- metadata +8 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7e532a2f3624fd193ccd7db01c8a0fdc1e996796d056621c1958e19a42b2a06d
|
4
|
+
data.tar.gz: 68bf59073935cb28a79917ee3269d282c5e8af50d33e332536c36db00c970b0b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 55289b1a11b0b2abea008f21effe7450a765b61d207ec082f5c64868290bca0043983086701e09f1c01ebeb8dfbfc75c6ab59ba105eaa192c35839a7f5ff4665
|
7
|
+
data.tar.gz: 3fd02cb0eeea34a8b6c5008f955654451caeba84bda51c58bf0d6e6f8c1c8d009b5164b7b3d87a1c588eeda14e5b7df959be4d87a35d6e4a45e687fc4ace930e
|
data/README.md
CHANGED
@@ -244,6 +244,19 @@ After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
|
244
244
|
|
245
245
|
To install this gem onto your local machine, run `bundle exec rake install`.
|
246
246
|
|
247
|
+
### Releasing a new version
|
248
|
+
|
249
|
+
To release a new version:
|
250
|
+
|
251
|
+
1. Update `lib/prometheus/client/version.rb` with the version number.
|
252
|
+
1. Update `CHANGELOG.md` with the changes in the release.
|
253
|
+
1. Create a merge request and merge it to `master`.
|
254
|
+
1. Push a new tag to the repository.
|
255
|
+
|
256
|
+
The new version with precompiled, native gems will automatically be
|
257
|
+
published to [RubyGems](https://rubygems.org/gems/prometheus-client-mmap) when the
|
258
|
+
pipeline for the tag completes.
|
259
|
+
|
247
260
|
[1]: https://github.com/prometheus/prometheus
|
248
261
|
[2]: http://rack.github.io/
|
249
262
|
[3]: https://gitlab.com/gitlab-org/prometheus-client-mmap/badges/master/pipeline.svg
|