prometheus-client-mmap 1.0.1-aarch64-linux → 1.0.2-aarch64-linux

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5702b81a0aa79918513d8222f84b71fda1ab7b00f39b5df9d4e32ad369549c2e
4
- data.tar.gz: ab7b247e166ec4a897a3429040c0955d70a232456cb36b5d616129c3b1d00e5a
3
+ metadata.gz: 13a08098b2d085a2c53649c81057699bb335209391ac1a2a8f58c9cfe61d6baf
4
+ data.tar.gz: f5471cdaa9ead620c45db31eef20461228c86a2de20769fbd016c0408f83927a
5
5
  SHA512:
6
- metadata.gz: 29aa9cfaa30c8b3e497529abfbce589ba992df6921e8690882ad3c18a33472fc8ad25b5fdc673e478db5d082777351c1ee25fb9c58ec412a563b6bbc13831b25
7
- data.tar.gz: 39d6948ef27afb5ce6207bb8621aa2db949dce1a03827463aa6db783fd05a4f58c5286c1cc5afb30e3deb7ca82048f227760f1e313afc8cd311038404f7ae0ed
6
+ metadata.gz: 628581f25d415029269afa63b58ae27b51a02002b1fe219614c64d973a878d134e725570de598ee0d2976e02d4d52586e5de6b749d08d6c029fde24a9ef7f304
7
+ data.tar.gz: 897d7d4fdf17322fd6eea99cc4c1551de2dab896982677224a235260642cad17818da8036670ec985638cb28959ec21136dad28832792c241caec52fe88578ac
@@ -536,14 +536,14 @@ impl MmapedFile {
536
536
  match file.seek(SeekFrom::Start(len - 1)) {
537
537
  Ok(_) => {}
538
538
  Err(_) => {
539
- return Err(MmapError::WithErrno(format!("Can't lseek {}", len - 1)));
539
+ return Err(MmapError::with_errno(format!("Can't lseek {}", len - 1)));
540
540
  }
541
541
  }
542
542
 
543
543
  match file.write(&[0x0]) {
544
544
  Ok(1) => {}
545
545
  _ => {
546
- return Err(MmapError::WithErrno(format!(
546
+ return Err(MmapError::with_errno(format!(
547
547
  "Can't extend {}",
548
548
  path.display()
549
549
  )));
Binary file
Binary file
Binary file
Binary file
@@ -1,5 +1,5 @@
1
1
  module Prometheus
2
2
  module Client
3
- VERSION = '1.0.1'.freeze
3
+ VERSION = '1.0.2'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: prometheus-client-mmap
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - Tobias Schmidt
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2023-12-04 00:00:00.000000000 Z
14
+ date: 2023-12-11 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: rb_sys