Skip to content

Commit

Permalink
Releasing v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ldlsegovia committed Jan 25, 2021
1 parent 6e0836b commit ebaf34b
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 47 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,12 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

### v1.1.0

#### Changed

* Use update instead of deprecated update_attributes.

### v1.0.0

#### Changed
Expand Down
55 changes: 10 additions & 45 deletions Gemfile.lock
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
active_job_log (1.0.0)
active_job_log (1.1.0)
enumerize (>= 1.0)
rails (>= 4.2.0)

Expand Down Expand Up @@ -62,59 +62,34 @@ GEM
crass (1.0.4)
diff-lcs (1.3)
docile (1.1.5)
enumerize (2.2.2)
enumerize (2.4.0)
activesupport (>= 3.2)
erubi (1.7.1)
factory_bot (4.8.2)
activesupport (>= 3.0.0)
factory_bot_rails (4.8.2)
factory_bot (~> 4.8.2)
railties (>= 3.0.0)
ffi (1.9.23)
formatador (0.2.5)
globalid (0.4.1)
globalid (0.4.2)
activesupport (>= 4.2.0)
guard (2.14.2)
formatador (>= 0.2.4)
listen (>= 2.7, < 4.0)
lumberjack (>= 1.0.12, < 2.0)
nenv (~> 0.1)
notiffany (~> 0.0)
pry (>= 0.9.12)
shellany (~> 0.0)
thor (>= 0.18.1)
guard-compat (1.2.1)
guard-rspec (4.7.3)
guard (~> 2.1)
guard-compat (~> 1.1)
rspec (>= 2.99.0, < 4.0)
i18n (1.0.1)
concurrent-ruby (~> 1.0)
json (2.1.0)
listen (3.1.5)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
ruby_dep (~> 1.2)
loofah (2.2.2)
crass (~> 1.0.2)
nokogiri (>= 1.5.9)
lumberjack (1.0.13)
mail (2.7.1)
mini_mime (>= 0.1.1)
marcel (0.3.3)
mimemagic (~> 0.3.2)
method_source (0.9.0)
mimemagic (0.3.2)
mini_mime (1.0.1)
mimemagic (0.3.5)
mini_mime (1.0.2)
mini_portile2 (2.3.0)
minitest (5.11.3)
nenv (0.3.0)
nio4r (2.3.1)
nio4r (2.5.2)
nokogiri (1.8.2)
mini_portile2 (~> 2.3.0)
notiffany (0.1.1)
nenv (~> 0.1)
shellany (~> 0.0)
pry (0.11.3)
coderay (~> 1.1.0)
method_source (~> 0.9.0)
Expand Down Expand Up @@ -148,13 +123,6 @@ GEM
rake (>= 0.8.7)
thor (>= 0.18.1, < 2.0)
rake (12.3.1)
rb-fsevent (0.10.3)
rb-inotify (0.9.10)
ffi (>= 0.5.0, < 2)
rspec (3.7.0)
rspec-core (~> 3.7.0)
rspec-expectations (~> 3.7.0)
rspec-mocks (~> 3.7.0)
rspec-core (3.7.1)
rspec-support (~> 3.7.0)
rspec-expectations (3.7.0)
Expand All @@ -172,8 +140,6 @@ GEM
rspec-mocks (~> 3.7.0)
rspec-support (~> 3.7.0)
rspec-support (3.7.1)
ruby_dep (1.5.0)
shellany (0.0.1)
simplecov (0.14.1)
docile (~> 1.1.0)
json (>= 1.8, < 3)
Expand All @@ -182,7 +148,7 @@ GEM
sprockets (3.7.2)
concurrent-ruby (~> 1.0)
rack (> 1, < 3)
sprockets-rails (3.2.1)
sprockets-rails (3.2.2)
actionpack (>= 4.0)
activesupport (>= 4.0)
sprockets (>= 3.0.0)
Expand All @@ -194,9 +160,9 @@ GEM
tins (1.16.3)
tzinfo (1.2.5)
thread_safe (~> 0.1)
websocket-driver (0.7.0)
websocket-driver (0.7.3)
websocket-extensions (>= 0.1.0)
websocket-extensions (0.1.3)
websocket-extensions (0.1.5)

PLATFORMS
ruby
Expand All @@ -205,11 +171,10 @@ DEPENDENCIES
active_job_log!
coveralls
factory_bot_rails
guard-rspec
pry
pry-rails
rspec-rails
sqlite3

BUNDLED WITH
1.16.3
2.1.4
1 change: 0 additions & 1 deletion active_job_log.gemspec
Expand Up @@ -26,7 +26,6 @@ Gem::Specification.new do |s|
s.add_development_dependency "pry-rails"
s.add_development_dependency "sqlite3"
s.add_development_dependency "rspec-rails"
s.add_development_dependency "guard-rspec"
s.add_development_dependency "factory_bot_rails"
s.add_development_dependency "coveralls"
end
2 changes: 1 addition & 1 deletion lib/active_job_log/version.rb
@@ -1,3 +1,3 @@
module ActiveJobLog
VERSION = '1.0.0'
VERSION = '1.1.0'
end

0 comments on commit ebaf34b

Please sign in to comment.