Skip to content

Commit d339d1e

Browse files
committed
Merge branch 'develop'
2 parents 09defb7 + 041b8e9 commit d339d1e

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: ruby
22
rvm:
3-
- 2.3.0
3+
- 2.4.0
44
notifications:
55
recipients:
6-
- ContentEnablementProductTeam@careerbuilder.com
6+
- EmployerSiteContentProducts@cb.com

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ Version History
33
* All Version bumps are required to update this file as well!!
44
----
55

6+
* 0.8.1 - Dependency upgrades, etc
67
* 0.8.0 - Add Dynamic Yield Metadata
78
* 0.7.0 - Add SEO Robot Metadata
89
* 0.6.0 - Set SEO Keyword feed to be an array rather than comma separated String

cortex-snippets-client-ruby.gemspec

+7-8
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ require 'cortex/snippets/client/version'
66
Gem::Specification.new do |spec|
77
spec.name = 'cortex-snippets-client'
88
spec.version = Cortex::Snippets::Client::VERSION
9-
spec.authors = ['CB Content Enablement']
10-
spec.email = ['ContentEnablementProductTeam@careerbuilder.com']
9+
spec.authors = ['CareerBuilder Employer Site & Content Products']
10+
spec.email = ['EmployerSiteContentProducts@cb.com']
1111
spec.license = 'Apache-2.0'
1212

1313
spec.summary = %q{Provides loading of Cortex snippets for Ruby applications, with some Rails ViewHelpers}
@@ -18,11 +18,10 @@ Gem::Specification.new do |spec|
1818
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
1919
spec.require_paths = ['lib']
2020

21-
spec.add_dependency 'cortex-client', '~> 0.8.2'
22-
spec.add_dependency 'connection_pool', '~> 2.2.0'
23-
spec.add_dependency 'addressable', '~> 2.4.0'
21+
spec.add_dependency 'cortex-client', '~> 0.10'
22+
spec.add_dependency 'connection_pool', '~> 2.2'
23+
spec.add_dependency 'addressable', '~> 2.5'
2424

25-
spec.add_development_dependency 'rake', '~> 11.1'
26-
spec.add_development_dependency 'rspec'
27-
spec.add_development_dependency 'pry'
25+
spec.add_development_dependency 'rake', '~> 12.0'
26+
spec.add_development_dependency 'rspec', '~> 3.5'
2827
end

lib/cortex/snippets/client/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module Cortex
22
module Snippets
33
module Client
4-
VERSION = '0.8.0'
4+
VERSION = '0.8.1'
55
end
66
end
77
end

0 commit comments

Comments
 (0)