From 139a74a452c2144c5677ebd91df3252a9b10c72d Mon Sep 17 00:00:00 2001 From: Thadeu Esteves Jr Date: Thu, 26 May 2022 11:37:17 -0300 Subject: [PATCH] update version to 1.0.2 --- README.md | 2 +- lib/branca/version.rb | 2 +- spec/lib/branca/version_spec.rb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ec74903..8c4f05c 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ It is possible to use [Branca as an alternative to JWT](https://appelsiini.net/2 Add this line to your application's Gemfile, Note that you also must have [libsodium](https://download.libsodium.org/doc/) installed. ```ruby -gem 'branca-ruby', '~> 1.0.1' +gem 'branca-ruby', '~> 1.0.2' ``` ## Configure diff --git a/lib/branca/version.rb b/lib/branca/version.rb index bad7f47..42818eb 100644 --- a/lib/branca/version.rb +++ b/lib/branca/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Branca - VERSION = '1.0.1' + VERSION = '1.0.2' end diff --git a/spec/lib/branca/version_spec.rb b/spec/lib/branca/version_spec.rb index 1ec3dc0..bf03d2e 100644 --- a/spec/lib/branca/version_spec.rb +++ b/spec/lib/branca/version_spec.rb @@ -4,6 +4,6 @@ RSpec.describe Branca do it 'must have a version number' do - expect(Branca::VERSION).to eq('1.0.1') + expect(Branca::VERSION).to eq('1.0.2') end end