orcid_client 0.10.1 → 0.11.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/CHANGELOG.md +14 -6
- data/Gemfile.lock +13 -12
- data/lib/orcid_client/version.rb +1 -1
- data/orcid_client.gemspec +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 744eb6dbd53e86c62d507f8aed0794634f0f256f6e1d89cd67427ad96335b5f5
|
4
|
+
data.tar.gz: 1dce471353e28c2ab0643d2261b3887f7e27a59d8795e55cce4ff597ce3e3425
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b14d6a89b9cde5b0e737104d663f416c0bc6c94f8e833042cdfc6ae9c3db8530271644760c70de4cf16cf4a950e01f45180f9fd2d2453d7ee32b9a2f0edb176a
|
7
|
+
data.tar.gz: e6239ce1673d6c4d14b6e57c13507317479c594c42c803c2d7cb93137fe45f81195fe92fc0d085eec6a13ca17f46d9b84d20856ad66a700c504c151baf715918
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
@@ -2,7 +2,15 @@
|
|
2
2
|
|
3
3
|
## [Unreleased](https://github.com/datacite/orcid_client/tree/HEAD)
|
4
4
|
|
5
|
-
[Full Changelog](https://github.com/datacite/orcid_client/compare/0.10.
|
5
|
+
[Full Changelog](https://github.com/datacite/orcid_client/compare/0.10.1...HEAD)
|
6
|
+
|
7
|
+
**Merged pull requests:**
|
8
|
+
|
9
|
+
- Upgrade activesupport [\#29](https://github.com/datacite/orcid_client/pull/29) ([richardhallett](https://github.com/richardhallett))
|
10
|
+
|
11
|
+
## [0.10.1](https://github.com/datacite/orcid_client/tree/0.10.1) (2024-01-10)
|
12
|
+
|
13
|
+
[Full Changelog](https://github.com/datacite/orcid_client/compare/0.10.0...0.10.1)
|
6
14
|
|
7
15
|
**Merged pull requests:**
|
8
16
|
|
@@ -109,19 +117,19 @@
|
|
109
117
|
|
110
118
|
## [v.0.4.3](https://github.com/datacite/orcid_client/tree/v.0.4.3) (2018-12-12)
|
111
119
|
|
112
|
-
[Full Changelog](https://github.com/datacite/orcid_client/compare/v.0.4.
|
120
|
+
[Full Changelog](https://github.com/datacite/orcid_client/compare/v.0.4.2...v.0.4.3)
|
113
121
|
|
114
122
|
**Merged pull requests:**
|
115
123
|
|
116
124
|
- Chore update Bolognese [\#3](https://github.com/datacite/orcid_client/pull/3) ([kjgarza](https://github.com/kjgarza))
|
117
125
|
|
118
|
-
## [v.0.4.
|
126
|
+
## [v.0.4.2](https://github.com/datacite/orcid_client/tree/v.0.4.2) (2018-04-11)
|
119
127
|
|
120
|
-
[Full Changelog](https://github.com/datacite/orcid_client/compare/v.0.4.
|
128
|
+
[Full Changelog](https://github.com/datacite/orcid_client/compare/v.0.4.1...v.0.4.2)
|
121
129
|
|
122
|
-
## [v.0.4.
|
130
|
+
## [v.0.4.1](https://github.com/datacite/orcid_client/tree/v.0.4.1) (2018-04-11)
|
123
131
|
|
124
|
-
[Full Changelog](https://github.com/datacite/orcid_client/compare/v.0.4...v.0.4.
|
132
|
+
[Full Changelog](https://github.com/datacite/orcid_client/compare/v.0.4...v.0.4.1)
|
125
133
|
|
126
134
|
## [v.0.4](https://github.com/datacite/orcid_client/tree/v.0.4) (2018-04-11)
|
127
135
|
|
data/Gemfile.lock
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
orcid_client (0.
|
5
|
-
activesupport (>=
|
4
|
+
orcid_client (0.11.0)
|
5
|
+
activesupport (>= 6, < 7)
|
6
6
|
bolognese (~> 2.1.0)
|
7
7
|
builder (~> 3.2, >= 3.2.2)
|
8
8
|
dotenv (~> 2.1, >= 2.1.1)
|
@@ -13,11 +13,12 @@ PATH
|
|
13
13
|
GEM
|
14
14
|
remote: https://rubygems.org/
|
15
15
|
specs:
|
16
|
-
activesupport (
|
16
|
+
activesupport (6.1.7.7)
|
17
17
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
18
|
-
i18n (>=
|
19
|
-
minitest (
|
20
|
-
tzinfo (~>
|
18
|
+
i18n (>= 1.6, < 2)
|
19
|
+
minitest (>= 5.1)
|
20
|
+
tzinfo (~> 2.0)
|
21
|
+
zeitwerk (~> 2.3)
|
21
22
|
addressable (2.8.1)
|
22
23
|
public_suffix (>= 2.0.2, < 6.0)
|
23
24
|
amazing_print (1.4.0)
|
@@ -55,7 +56,7 @@ GEM
|
|
55
56
|
citeproc (~> 1.0, >= 1.0.9)
|
56
57
|
csl (~> 1.6)
|
57
58
|
colorize (0.8.1)
|
58
|
-
concurrent-ruby (1.
|
59
|
+
concurrent-ruby (1.2.3)
|
59
60
|
crack (0.4.5)
|
60
61
|
rexml
|
61
62
|
crass (1.0.6)
|
@@ -100,7 +101,7 @@ GEM
|
|
100
101
|
tilt
|
101
102
|
hashdiff (1.0.1)
|
102
103
|
htmlentities (4.3.4)
|
103
|
-
i18n (1.
|
104
|
+
i18n (1.14.4)
|
104
105
|
concurrent-ruby (~> 1.0)
|
105
106
|
iso8601 (0.9.1)
|
106
107
|
json-canonicalization (0.3.0)
|
@@ -137,7 +138,7 @@ GEM
|
|
137
138
|
oj (>= 2.8.3)
|
138
139
|
oj_mimic_json (~> 1.0, >= 1.0.1)
|
139
140
|
matrix (0.4.2)
|
140
|
-
minitest (5.
|
141
|
+
minitest (5.22.3)
|
141
142
|
multi_json (1.15.0)
|
142
143
|
multipart-post (2.2.3)
|
143
144
|
namae (1.0.2)
|
@@ -207,10 +208,9 @@ GEM
|
|
207
208
|
rdf (~> 3.2)
|
208
209
|
temple (0.9.1)
|
209
210
|
thor (1.2.1)
|
210
|
-
thread_safe (0.3.6)
|
211
211
|
tilt (2.0.11)
|
212
|
-
tzinfo (
|
213
|
-
|
212
|
+
tzinfo (2.0.6)
|
213
|
+
concurrent-ruby (~> 1.0)
|
214
214
|
unicode-types (1.8.0)
|
215
215
|
unicode_utils (1.4.0)
|
216
216
|
vcr (6.1.0)
|
@@ -218,6 +218,7 @@ GEM
|
|
218
218
|
addressable (>= 2.8.0)
|
219
219
|
crack (>= 0.3.2)
|
220
220
|
hashdiff (>= 0.4.0, < 2.0.0)
|
221
|
+
zeitwerk (2.6.13)
|
221
222
|
zlib (2.1.1)
|
222
223
|
|
223
224
|
PLATFORMS
|
data/lib/orcid_client/version.rb
CHANGED
data/orcid_client.gemspec
CHANGED
@@ -19,7 +19,7 @@ Gem::Specification.new do |s|
|
|
19
19
|
s.require_paths = ["lib"]
|
20
20
|
|
21
21
|
# Declary dependencies here, rather than in the Gemfile
|
22
|
-
s.add_dependency 'activesupport', '>=
|
22
|
+
s.add_dependency 'activesupport', '>= 6', '< 7'
|
23
23
|
s.add_dependency 'bolognese', '~> 2.1.0'
|
24
24
|
s.add_dependency 'builder', '~> 3.2', '>= 3.2.2'
|
25
25
|
s.add_dependency 'dotenv', '~> 2.1', '>= 2.1.1'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: orcid_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.11.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Martin Fenner
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-04-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -16,20 +16,20 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: '6'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: '
|
22
|
+
version: '7'
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version:
|
29
|
+
version: '6'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: '
|
32
|
+
version: '7'
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: bolognese
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|