From 92b4f50170434a6934364f4551877ca1fee67da5 Mon Sep 17 00:00:00 2001 From: ryantaylor <2320507+ryantaylor@users.noreply.github.com> Date: Sun, 15 Sep 2024 22:47:58 -0400 Subject: [PATCH] Update vault yet again. --- Cargo.lock | 4 ++-- Gemfile.lock | 2 +- README.md | 4 ++-- lib/vault_coh/version.rb | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 82a9130..198df25 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -377,9 +377,9 @@ dependencies = [ [[package]] name = "vault" -version = "10.1.2" +version = "10.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff80a9f2aed07c44a27883b8853899e245e84ce06a1b076e46dbec70ccd2c3da" +checksum = "f34ca93cbdd9ad52e7f7b11bb42d0e2b19355591b6018cc573461cfdfc74b8c9" dependencies = [ "byteorder", "magnus", diff --git a/Gemfile.lock b/Gemfile.lock index f9d8e0e..8322821 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - vault_coh (6.2.2) + vault_coh (6.2.3) GEM remote: https://rubygems.org/ diff --git a/README.md b/README.md index f9ea926..f7aa0ce 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Vault -[![Gem Version](https://badge.fury.io/rb/vault_coh.svg)](https://badge.fury.io/rb/vault_coh) [![Documentation](https://img.shields.io/badge/View-Documentation-blue.svg)](https://rubydoc.info/github/ryantaylor/vault-rb/v6.2.2) +[![Gem Version](https://badge.fury.io/rb/vault_coh.svg)](https://badge.fury.io/rb/vault_coh) [![Documentation](https://img.shields.io/badge/View-Documentation-blue.svg)](https://rubydoc.info/github/ryantaylor/vault-rb/v6.2.3) A native Ruby client wrapper for the [vault](https://github.com/ryantaylor/vault) Company of Heroes replay parser, integrated via a Rust native extension. @@ -24,7 +24,7 @@ bytes = File.read('/path/to/replay.rec').unpack('C*') replay = VaultCoh::Replay.from_bytes(bytes) puts replay.version ``` -All information available from parsing can be found in the [documentation](https://rubydoc.info/github/ryantaylor/vault-rb/v6.2.2). +All information available from parsing can be found in the [documentation](https://rubydoc.info/github/ryantaylor/vault-rb/v6.2.3). ## Contributing diff --git a/lib/vault_coh/version.rb b/lib/vault_coh/version.rb index 681d27e..f40c962 100644 --- a/lib/vault_coh/version.rb +++ b/lib/vault_coh/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module VaultCoh - VERSION = '6.2.2' + VERSION = '6.2.3' end