diff --git a/Gemfile.lock b/Gemfile.lock index 88c0a3b..1c0ea64 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - vault_coh (6.1.0) + vault_coh (6.2.0) GEM remote: https://rubygems.org/ diff --git a/README.md b/README.md index 026f0bc..e8adf38 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.1.0) +[![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.0) 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.1.0). +All information available from parsing can be found in the [documentation](https://rubydoc.info/github/ryantaylor/vault-rb/v6.2.0). ## Contributing diff --git a/lib/vault_coh/version.rb b/lib/vault_coh/version.rb index 9ee0460..5403748 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.1.0' + VERSION = '6.2.0' end