Skip to content

Commit

Permalink
Technical/Update application dependencies (#56)
Browse files Browse the repository at this point in the history
* Updated runtime/development dependencies
* Updated version, changelog
  • Loading branch information
bestwebua authored Jul 12, 2021
1 parent 66dda1c commit ad2f27d
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 14 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.2.15] - 2021-07-12

### Changed

- Updated application dependencies (truemail 2.4.6)
- Updated development dependencies
- Updated application version

## [0.2.14] - 2021-07-05

### Changed
Expand Down
6 changes: 3 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ruby(File.read(File.join(File.dirname(__FILE__), '.ruby-version')).strip[/-(.+)/
gem 'dry-struct', '~> 1.4'
gem 'rack', '~> 2.2', '>= 2.2.3'
gem 'thin', '~> 1.8', '>= 1.8.1'
gem 'truemail', '~> 2.4', '>= 2.4.4'
gem 'truemail', '~> 2.4', '>= 2.4.6'

group :development, :test do
gem 'pry-byebug', '~> 3.9'
Expand All @@ -19,8 +19,8 @@ group :development, :test do
gem 'fasterer', '~> 0.9.0', require: false
gem 'overcommit', '~> 0.58.0', require: false
gem 'reek', '~> 6.0', '>= 6.0.4', require: false
gem 'rubocop', '~> 1.18', '>= 1.18.2', require: false
gem 'rubocop-performance', '~> 1.11', '>= 1.11.3', require: false
gem 'rubocop', '~> 1.18', '>= 1.18.3', require: false
gem 'rubocop-performance', '~> 1.11', '>= 1.11.4', require: false
gem 'rubocop-rspec', '~> 2.4', require: false
end

Expand Down
19 changes: 9 additions & 10 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ GEM
dry-container (0.8.0)
concurrent-ruby (~> 1.0)
dry-configurable (~> 0.1, >= 0.1.3)
dry-core (0.6.0)
dry-core (0.7.1)
concurrent-ruby (~> 1.0)
dry-inflector (0.2.1)
dry-logic (1.2.0)
Expand Down Expand Up @@ -52,7 +52,7 @@ GEM
iniparse (~> 1.4)
rexml (~> 3.2)
parallel (1.20.1)
parser (3.0.1.1)
parser (3.0.2.0)
ast (~> 2.4.1)
pry (0.13.1)
coderay (~> 1.1)
Expand Down Expand Up @@ -85,7 +85,7 @@ GEM
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.10.0)
rspec-support (3.10.2)
rubocop (1.18.2)
rubocop (1.18.3)
parallel (~> 1.10)
parser (>= 3.0.0.0)
rainbow (>= 2.2.2, < 4.0)
Expand All @@ -96,7 +96,7 @@ GEM
unicode-display_width (>= 1.4.0, < 3.0)
rubocop-ast (1.7.0)
parser (>= 3.0.1.1)
rubocop-performance (1.11.3)
rubocop-performance (1.11.4)
rubocop (>= 1.7.0, < 2.0)
rubocop-ast (>= 0.4.0)
rubocop-rspec (2.4.0)
Expand All @@ -118,7 +118,7 @@ GEM
eventmachine (~> 1.0, >= 1.0.4)
rack (>= 1, < 3)
thor (1.1.0)
truemail (2.4.4)
truemail (2.4.6)
simpleidn (~> 0.2.1)
unf (0.1.4)
unf_ext
Expand All @@ -129,7 +129,6 @@ PLATFORMS
x86_64-darwin-19

DEPENDENCIES
bundler (~> 2.2, >= 2.2.21)
bundler-audit (~> 0.8.0)
dry-struct (~> 1.4)
fasterer (~> 0.9.0)
Expand All @@ -140,15 +139,15 @@ DEPENDENCIES
rack-test (~> 1.1)
reek (~> 6.0, >= 6.0.4)
rspec (~> 3.10)
rubocop (~> 1.18, >= 1.18.2)
rubocop-performance (~> 1.11, >= 1.11.3)
rubocop (~> 1.18, >= 1.18.3)
rubocop-performance (~> 1.11, >= 1.11.4)
rubocop-rspec (~> 2.4)
simplecov (~> 0.17.1)
thin (~> 1.8, >= 1.8.1)
truemail (~> 2.4, >= 2.4.4)
truemail (~> 2.4, >= 2.4.6)

RUBY VERSION
ruby 2.6.6p146

BUNDLED WITH
2.2.21
2.2.23
2 changes: 1 addition & 1 deletion app/truemail_server/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module TruemailServer
VERSION = '0.2.14'
VERSION = '0.2.15'
end

0 comments on commit ad2f27d

Please sign in to comment.