prometheus-client-mmap 0.20.3-x86_64-linux-musl → 0.22.0-x86_64-linux-musl
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: 7413feb908630e80a9949470f32d3d93ad796b50e67dbdf4c601ff3254fc442e
|
4
|
+
data.tar.gz: 9f7d05d315e5ef4a4b776fd9e704599074756a8876bb2b22a44960571bda51d4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 524070df387d7dbb72cf119715106b5586794263d433ed71b0e8da75a67147eeeddf365b587a6d9b13d26058d70600925ba037c2130bf87634b68baa06b4f52f
|
7
|
+
data.tar.gz: dcbb9b4f11ba3cd9ac67682c6a8f4462a920ff73b14f6578cd51c75d461cdd3cbcf433a5a1b21398e3c3bbb81131af5b9d77023adf50ba64a13fadb1e530181b
|
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
|