Skip to content

Commit 83f2905

Browse files
authored
Merge pull request #17 from contentstack/bug/dependency-update
Package update
2 parents fe1eb07 + 77813dd commit 83f2905

File tree

4 files changed

+27
-14
lines changed

4 files changed

+27
-14
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
## CHANGELOG
22
------------------------------------------------
3+
## Version 0.4.1
4+
### Date: 2nd-Jun-2021
5+
### Dependency update
6+
- Updated gemspec dependency
7+
8+
## Version 0.4.0
9+
### Date: 16th-Apr-2021
10+
### New Features
11+
- Embedded feature Support added
12+
13+
------------------------------------------------
314

415
## Version 0.3.0
516
### Date: 17th-Mar-2021

Gemfile.lock

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
PATH
22
remote: .
33
specs:
4-
contentstack (0.2.0)
5-
activesupport (> 3.2.5)
6-
contentstack_utils (~> 1.0.0)
4+
contentstack (0.4.1)
5+
activesupport (>= 3.2, < 6.2)
6+
contentstack_utils (~> 1.0, >= 1.0.1)
77

88
GEM
99
remote: https://rubygems.org/
1010
specs:
11-
activesupport (6.1.3.1)
11+
activesupport (6.1.3.2)
1212
concurrent-ruby (~> 1.0, >= 1.0.2)
1313
i18n (>= 1.6, < 2)
1414
minitest (>= 5.1)
@@ -17,18 +17,20 @@ GEM
1717
addressable (2.7.0)
1818
public_suffix (>= 2.0.2, < 5.0)
1919
concurrent-ruby (1.1.8)
20-
contentstack_utils (1.0.0)
21-
activesupport (~> 6.1.0)
22-
nokogiri (~> 1.11.0)
20+
contentstack_utils (1.0.1)
21+
activesupport (>= 3.2, < 6.2)
22+
nokogiri (~> 1.11, >= 1.11.0)
2323
crack (0.4.5)
2424
rexml
2525
diff-lcs (1.4.4)
26-
docile (1.3.5)
26+
docile (1.4.0)
2727
hashdiff (1.0.1)
2828
i18n (1.8.10)
2929
concurrent-ruby (~> 1.0)
30+
mini_portile2 (2.5.3)
3031
minitest (5.14.4)
31-
nokogiri (1.11.2-arm64-darwin)
32+
nokogiri (1.11.6)
33+
mini_portile2 (~> 2.5.0)
3234
racc (~> 1.4)
3335
public_suffix (4.0.6)
3436
racc (1.5.2)
@@ -51,7 +53,7 @@ GEM
5153
simplecov-html (~> 0.11)
5254
simplecov_json_formatter (~> 0.1)
5355
simplecov-html (0.12.3)
54-
simplecov_json_formatter (0.1.2)
56+
simplecov_json_formatter (0.1.3)
5557
tzinfo (2.0.4)
5658
concurrent-ruby (~> 1.0)
5759
webmock (3.11.3)
@@ -62,7 +64,7 @@ GEM
6264
zeitwerk (2.4.2)
6365

6466
PLATFORMS
65-
universal-darwin-19
67+
ruby
6668

6769
DEPENDENCIES
6870
contentstack!

contentstack.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ Gem::Specification.new do |s|
2020
s.files = `git ls-files`.split("\n")
2121
s.require_paths = ["lib"]
2222

23-
s.add_dependency 'activesupport', "~> 3.2"
24-
s.add_dependency "contentstack_utils", "~> 1.0.0"
23+
s.add_dependency 'activesupport', '>= 3.2', '< 6.2'
24+
s.add_dependency "contentstack_utils", '~> 1.0', '>= 1.0.1'
2525

2626
s.add_development_dependency 'rspec', '~> 3.10.0'
2727
s.add_development_dependency 'webmock', '~> 3.11.0'

lib/contentstack/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Contentstack
2-
VERSION = "0.4.0"
2+
VERSION = "0.4.1"
33
end

0 commit comments

Comments
 (0)