diff --git a/Cargo.lock b/Cargo.lock index 198df25..24ea0e6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -377,9 +377,9 @@ dependencies = [ [[package]] name = "vault" -version = "10.1.3" +version = "10.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f34ca93cbdd9ad52e7f7b11bb42d0e2b19355591b6018cc573461cfdfc74b8c9" +checksum = "b171e70209f0ef47c6bd335852c0861d576455b96b964b12561e7b7418364ac7" dependencies = [ "byteorder", "magnus", diff --git a/Gemfile.lock b/Gemfile.lock index 8322821..a60a6ba 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - vault_coh (6.2.3) + vault_coh (6.2.4) GEM remote: https://rubygems.org/ diff --git a/README.md b/README.md index f7aa0ce..731dc81 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.3) +[![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.4) 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.3). +All information available from parsing can be found in the [documentation](https://rubydoc.info/github/ryantaylor/vault-rb/v6.2.4). ## Contributing diff --git a/lib/vault_coh/version.rb b/lib/vault_coh/version.rb index f40c962..a68a508 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.3' + VERSION = '6.2.4' end