barkibu-kb 0.20.0 → 0.21.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f8144ce65eda7fea83254b2aaa17d47bee03cb99c749832d2b7a54e9ab38bd60
4
- data.tar.gz: aec47c647a9adb72e18031e3e33c82950bb00b249e0feaebe7c92a13c7da5171
3
+ metadata.gz: b723feb1e9ff962d66e087b0652afab384418c3b0d231aa1afd4a571f894dc11
4
+ data.tar.gz: 4cec0f34fda77670d81369dbaa1b01db62358dd020e5c2f21b97e7468e9569a1
5
5
  SHA512:
6
- metadata.gz: 637282d65870088123575aff253b3b59b96f2a9723f7265794f2df46de7b7ccd25b91154098c6b89a3d667b96e3673b434e2ee2ac4cbbe23449d9f730b22c9fa
7
- data.tar.gz: 220d29688b08f7db663b4dfcda3fb0ceb3794d8e2aa039c55836ddc52a7d2f31dd8537a688e8c251249391033707c4dd9f82bec85ea84cbc7407a11b017b0092
6
+ metadata.gz: 2b98f52f1d5b9ffff20fe469fb6fbd3365c05baabcb1f1a121b7abfa8e457c9669a7225a0e69498a6e9088ccc1233c0f90b40124267d694a0632ce5d6992d969
7
+ data.tar.gz: 87cb8b45461565a143c9aac34f048b68166dd4e0176802f11c682266c5fa11b3d466d84dc1bf3e7284272153cf53d1cde2313eea0446c3df2fa68f1116b8fcce
@@ -15,7 +15,7 @@ jobs:
15
15
  git config user.name 'Barkibot'
16
16
  git config user.email 'dev+bot@barkibu.com'
17
17
  - name: Release Gem
18
- uses: cadwallion/publish-rubygems-action@master
18
+ uses: discourse/publish-rubygems-action@v2
19
19
  env:
20
20
  GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
21
21
  RUBYGEMS_API_KEY: ${{secrets.RUBYGEMS_API_KEY}}
data/CHANGELOG.md CHANGED
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [unreleased]
9
+ - See diff: https://github.com/barkibu/kb-ruby/compare/v0.21.0...HEAD
10
+
11
+ ## [0.21.0]
12
+ - Add city attribute to PetParent model
13
+
8
14
  ## [0.20.0]
9
15
  - Expose cache clearing API on client/model
10
16
 
@@ -212,7 +218,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
212
218
 
213
219
  - Init Version: Breeds and limited PetParents/Consultations
214
220
 
215
- [unreleased]: https://github.com/barkibu/kb-ruby/compare/v0.10.0...HEAD
216
221
  [0.10.0]: https://github.com/barkibu/kb-ruby/compare/v0.9.0...0.10.0
217
222
  [0.9.0]: https://github.com/barkibu/kb-ruby/compare/v0.8.0...0.9.0
218
223
  [0.8.0]: https://github.com/barkibu/kb-ruby/compare/v0.7.2...0.8.0
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- barkibu-kb (0.20.0)
4
+ barkibu-kb (0.21.0)
5
5
  activemodel (>= 4.0.2)
6
6
  activerecord
7
7
  activesupport (>= 3.0.0)
@@ -10,8 +10,8 @@ PATH
10
10
  faraday-http
11
11
  faraday_middleware
12
12
  i18n
13
- barkibu-kb-fake (0.20.0)
14
- barkibu-kb (= 0.20.0)
13
+ barkibu-kb-fake (0.21.0)
14
+ barkibu-kb (= 0.21.0)
15
15
  countries
16
16
  sinatra
17
17
  webmock
@@ -178,4 +178,4 @@ DEPENDENCIES
178
178
  webmock
179
179
 
180
180
  BUNDLED WITH
181
- 1.17.3
181
+ 2.4.12
@@ -42,7 +42,7 @@ module KB
42
42
  private_class_method :attributes_from_response
43
43
 
44
44
  STRING_FIELDS = %i[key partner_name first_name last_name prefix_phone_number
45
- phone_number email country address zip_code nif affiliate_code].freeze
45
+ phone_number email country address zip_code nif affiliate_code city].freeze
46
46
  DATE_FIELDS = %i[birth_date deleted_at].freeze
47
47
  BOOLEAN_FIELDS = %i[phone_number_verified email_verified].freeze
48
48
  FIELDS = [*STRING_FIELDS, *DATE_FIELDS, *BOOLEAN_FIELDS].freeze
data/lib/kb/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module KB
2
- VERSION = '0.20.0'.freeze
2
+ VERSION = '0.21.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: barkibu-kb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.20.0
4
+ version: 0.21.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Léo Figea
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-03-14 00:00:00.000000000 Z
11
+ date: 2023-05-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dry-configurable
@@ -319,7 +319,7 @@ licenses:
319
319
  - MIT
320
320
  metadata:
321
321
  homepage_uri: https://app.barkibu.com
322
- post_install_message:
322
+ post_install_message:
323
323
  rdoc_options: []
324
324
  require_paths:
325
325
  - lib
@@ -334,8 +334,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
334
334
  - !ruby/object:Gem::Version
335
335
  version: '0'
336
336
  requirements: []
337
- rubygems_version: 3.1.4
338
- signing_key:
337
+ rubygems_version: 3.1.6
338
+ signing_key:
339
339
  specification_version: 4
340
340
  summary: Barkibu's Knowledge Base API sdk
341
341
  test_files: []