Skip to content

Commit 9ce2f31

Browse files
committed
Prepare for v1.0.7.
1 parent 53c3ed6 commit 9ce2f31

4 files changed

Lines changed: 36 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
## [1.0.7] - 2022-04-14
2+
- Updated package dependencies and tests.

Gemfile.lock

Lines changed: 25 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
zammad_api (1.0.6)
4+
zammad_api (1.0.7)
55
faraday (~> 1)
66

77
GEM
@@ -12,8 +12,29 @@ GEM
1212
crack (0.4.5)
1313
rexml
1414
diff-lcs (1.2.5)
15-
faraday (1.0.1)
15+
faraday (1.10.0)
16+
faraday-em_http (~> 1.0)
17+
faraday-em_synchrony (~> 1.0)
18+
faraday-excon (~> 1.1)
19+
faraday-httpclient (~> 1.0)
20+
faraday-multipart (~> 1.0)
21+
faraday-net_http (~> 1.0)
22+
faraday-net_http_persistent (~> 1.0)
23+
faraday-patron (~> 1.0)
24+
faraday-rack (~> 1.0)
25+
faraday-retry (~> 1.0)
26+
ruby2_keywords (>= 0.0.4)
27+
faraday-em_http (1.0.0)
28+
faraday-em_synchrony (1.0.0)
29+
faraday-excon (1.1.0)
30+
faraday-httpclient (1.0.1)
31+
faraday-multipart (1.0.3)
1632
multipart-post (>= 1.2, < 3)
33+
faraday-net_http (1.0.1)
34+
faraday-net_http_persistent (1.2.0)
35+
faraday-patron (1.0.0)
36+
faraday-rack (1.0.0)
37+
faraday-retry (1.0.3)
1738
hashdiff (0.3.7)
1839
multipart-post (2.1.1)
1940
public_suffix (4.0.6)
@@ -32,6 +53,7 @@ GEM
3253
diff-lcs (>= 1.2.0, < 2.0)
3354
rspec-support (~> 3.5.0)
3455
rspec-support (3.5.0)
56+
ruby2_keywords (0.0.5)
3557
webmock (3.3.0)
3658
addressable (>= 2.3.6)
3759
crack (>= 0.3.2)
@@ -48,4 +70,4 @@ DEPENDENCIES
4870
zammad_api!
4971

5072
BUNDLED WITH
51-
2.2.19
73+
2.2.20

lib/zammad_api/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module ZammadAPI
2-
VERSION = '1.0.6'.freeze
2+
VERSION = '1.0.7'.freeze
33
end

zammad_api.gemspec

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,19 @@ require 'zammad_api/version'
66
Gem::Specification.new do |spec|
77
spec.name = 'zammad_api'
88
spec.version = ZammadAPI::VERSION.dup
9-
spec.authors = ['Martin Edenhofer', 'Thorsten Eckel']
9+
spec.authors = ['Martin Edenhofer', 'Martin Gruner']
1010
spec.email = ['support@zammad.org']
1111

1212
spec.summary = 'Zammad API v1.0 client.'
1313
spec.description = 'Ruby wrapper for the Zammad API v1.0.'
1414
spec.homepage = 'https://github.com/zammad/zammad-api-client-ruby'
15+
spec.license = 'AGPL-3.0-only'
16+
17+
spec.metadata["allowed_push_host"] = "https://rubygems.org"
18+
19+
spec.metadata["homepage_uri"] = spec.homepage
20+
spec.metadata["source_code_uri"] = "https://github.com/zammad/zammad-api-client-ruby"
21+
spec.metadata["changelog_uri"] = "https://github.com/zammad/zammad-api-client-ruby/blob/master/CHANGELOG.md"
1522

1623
spec.files = Dir['{lib}/**/*']
1724
spec.require_paths = ['lib']

0 commit comments

Comments
 (0)