prometheus-client-mmap 0.20.3-x86_64-linux → 0.22.0-x86_64-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: d6e5a43109cf4bc58d81f332aae818b8298a5b23d188c6bd7b52a5a779e70b21
|
4
|
+
data.tar.gz: 95789d977da3e948071abd84ac5f525e1c5a3fa0b8e86e3cebb4ebac9a0671d7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c96920c805633dfa165c8484f9fa87046b37522c03f73dec8e217b98f158460a9bb733291bed9ec31fbacc7df0e92592f8e7eab413975c660d0394bff8cd1aff
|
7
|
+
data.tar.gz: c4a56c721f84f2b29c590a5ed87ad530fc10ddc360a78bc3be4b6022e8bd60ebee5fb5cb5afd62647afdf944c7ab77f8495721997a2bbb6efd41bc2a366fe9b2
|
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
|