Skip to content

Commit

Permalink
Prepare 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
palkan committed Oct 21, 2017
1 parent c8345f7 commit b3ddc9b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .rubocop.yml
Expand Up @@ -11,14 +11,15 @@ AllCops:
- 'bench/**/*'
- 'vendor/**/*'
- 'lib/anycable/rpc/**/*'
- 'gemfiles/**/*'
- 'Gemfile'
- 'Rakefile'
- '*.gemspec'
DisplayCopNames: true
StyleGuideCopsOnly: false
TargetRubyVersion: 2.4

Style/AccessorMethodName:
Naming/AccessorMethodName:
Enabled: false

Style/PercentLiteralDelimiters:
Expand All @@ -34,7 +35,7 @@ Style/Documentation:
Style/StringLiterals:
Enabled: false

Style/SpaceInsideStringInterpolation:
Layout/SpaceInsideStringInterpolation:
EnforcedStyle: no_space

Style/BlockDelimiters:
Expand Down
2 changes: 1 addition & 1 deletion anycable.gemspec
Expand Up @@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.require_paths = ["lib"]

spec.add_dependency "anyway_config", "~> 1.1"
spec.add_dependency "anyway_config", "~> 1.1", ">= 1.1.1"
spec.add_dependency "grpc", "~> 1.6"
spec.add_dependency "redis", ">= 3.2"

Expand Down
2 changes: 1 addition & 1 deletion lib/anycable/version.rb
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Anycable
VERSION = "0.5.0.rc1"
VERSION = "0.5.0"
end

0 comments on commit b3ddc9b

Please sign in to comment.