platform-api 3.5.0 → 3.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1383efaefd3565fdcbee73f42d9dbb2149d83d57a267a5370339c747b48bf117
4
- data.tar.gz: 7ce7b087648836e4c4d45168f58aaa84c775ae23a94544833f483aa1288b7370
3
+ metadata.gz: 4df90c15a3a7108112d47c4a8912f2c0cc0c133f220f9b7b18a90f5f81b8eb84
4
+ data.tar.gz: 6466930cc95ffab375021eb6a3442aaf320d72cfaec9f2f8b78548c9798ffbaf
5
5
  SHA512:
6
- metadata.gz: 421275c5af1466282481910d4b83b4e92ec75d1e4888b652db0de76dd8aec0f26ffaf7c12176adafe4cf03e0a4e6b748fad9975efd0432f136bbbc77301d8f3e
7
- data.tar.gz: bff00809ee73304d3b144aef3b966333c3ee57c118b32f200a26cb8f0c6504de72f99259d470c13cd55265a8db7f82ace091de203edb103d68deace172e6ab5d
6
+ metadata.gz: 63e2ae18a43482dc82198b1b189048820530d0ec59d17b4a9f8836b7cfe5e9e448b772bfc7f063455abc2b15c7c05a67feb8eae72bfa57dc0bb31c54e2af2d57
7
+ data.tar.gz: 7787d7c3d99164a0d6737250f66b29e0fb1a755292a67c5e62da8c84452ab7bcfac1380318bc1e5ed3b4cd54c7e7bd83484134eb1accf9c6014c17b7144eb995
data/.circleci/config.yml CHANGED
@@ -63,6 +63,22 @@ jobs:
63
63
  - <<: *bundle
64
64
  - <<: *hatchet_setup
65
65
  - <<: *unit
66
+ "ruby-3.0":
67
+ docker:
68
+ - image: circleci/ruby:3.0
69
+ steps:
70
+ - checkout
71
+ - <<: *bundle
72
+ - <<: *hatchet_setup
73
+ - <<: *unit
74
+ "ruby-3.1":
75
+ docker:
76
+ - image: circleci/ruby:3.1
77
+ steps:
78
+ - checkout
79
+ - <<: *bundle
80
+ - <<: *hatchet_setup
81
+ - <<: *unit
66
82
 
67
83
  workflows:
68
84
  version: 2
@@ -74,3 +90,5 @@ workflows:
74
90
  - "ruby-2.5"
75
91
  - "ruby-2.6"
76
92
  - "ruby-2.7"
93
+ - "ruby-3.0"
94
+ - "ruby-3.1"
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  ## Master (unreleased)
2
2
 
3
+ ## 3.6.0
4
+
5
+ - Pull latest JSON Schema and regenerated API.
6
+
7
+ ## 3.6.0
8
+
9
+ - Pull latest JSON Schema and regenerated API.
10
+
3
11
  ## 3.5.0
4
12
 
5
13
  - Pull latest JSON Schema and regenerated API.
data/Rakefile CHANGED
@@ -15,9 +15,10 @@ task :publish_docs => [:build] do
15
15
  sh 'rake yard'
16
16
  sh 'cp -R doc /tmp/platform-api-doc'
17
17
  sh 'git checkout gh-pages'
18
+ sh 'rm -rf *'
18
19
  sh 'cp -R /tmp/platform-api-doc/* .'
19
20
  sh 'rm -rf /tmp/platform-api-doc'
20
- sh 'git add .'
21
+ sh 'git add -A .'
21
22
  sh 'git commit -am "Rebuild documentation"'
22
23
  sh 'git push origin gh-pages'
23
24
  sh 'git checkout master'