pvoutput 0.6.0 → 1.0.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: 335a39d8597c2d72545424953282c5325c677ba7c8c8529ef58a66157088e9b1
4
- data.tar.gz: a7eb5913ea1960036f4c8bdb3f3c4523674c69e1bccb23756c4b037d48a866ac
3
+ metadata.gz: 8838c12458d732306134a95d095732b0601b943a57bd327591390893fde07197
4
+ data.tar.gz: b302c36decace96a670043a6642bbd19b1a1c8ab08266e8dde4b3c7f8f23f92a
5
5
  SHA512:
6
- metadata.gz: 5d5a1e4180ba44bec0fb0e3aed3facf13d40d959a55b13104852b9b070336935228e7dec82bded26ac0989abb72b35d6798325dc99fdc884d6e35920290aa444
7
- data.tar.gz: e93c15e6e04f3421b4bc50b47e2ee2e30b846b5f11f333ff2b4d2866b811c2d06de83434ab9daaac25db764be7bbc00a5c09c4a7c5139131074db29a8f109864
6
+ metadata.gz: 9b60f6fbe559f1fc9a15b9debcf5703eaa42aa95bbe35aa7ae3fd8016197d279ce8f3c62414a2c1faa05adfaf7efccbfe2dd9bd0044ec28f239855b0b1492080
7
+ data.tar.gz: 3e203a8ce6c1c1309ec1ad22f37267f94d74820b6c4a332b36a94c818c1bee9ae2442223b31d45c3b6c243a0887c4023a1e9b22c2f6deadf24c10022854d7f32
@@ -11,19 +11,15 @@ jobs:
11
11
 
12
12
  steps:
13
13
  - uses: actions/checkout@v2
14
- - name: Set up Ruby 2.6
14
+ - name: Set up Ruby 2.7
15
15
  uses: ruby/setup-ruby@v1
16
16
  with:
17
- ruby-version: 2.6
17
+ ruby-version: 2.7
18
18
 
19
19
  - name: Install dependencies
20
20
  run: bundle install
21
21
  - name: Publish to RubyGems
22
22
  run: |
23
- mkdir -p $HOME/.gem
24
- touch $HOME/.gem/credentials
25
- chmod 0600 $HOME/.gem/credentials
26
- printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
27
23
  rake release
28
24
  env:
29
- GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
25
+ GEM_HOST_API_KEY: "${{secrets.GEM_HOST_API_KEY}}"
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ # 1.0.0 (2021-02-14)
4
+
5
+ * Require a minimum of Ruby 2.5 (@jwillemsen)
6
+ * Clean up ruby gem publish GitHub Action (@jwillemsen)
7
+
3
8
  # 0.6.0 (2021-02-06)
4
9
 
5
10
  This test has no code changes but tests the new release process.
data/README.md CHANGED
@@ -157,7 +157,20 @@ You can enable HTTParty debugging to see the requests by setting `PVOUTPUT_DEBUG
157
157
 
158
158
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake rspec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
159
159
 
160
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
160
+ To install this gem onto your local machine, run `bundle exec rake install`.
161
+
162
+ ## Release
163
+
164
+ To release a new version:
165
+ * Create a branch for the release
166
+ * Update the version number in `version.rb`
167
+ * Update CHANGELOG.md
168
+ * git commit -pm 'Release 1.x.x'
169
+ * git tag v1.x.x
170
+ * git push
171
+ * git push --tags
172
+ * In GitHub add the Change Log section to the release and save it
173
+ * Check everything looks OK in GitHub Actions
161
174
 
162
175
  ## Contributing
163
176
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PVOutput
4
- VERSION = '0.6.0'
4
+ VERSION = '1.0.0'
5
5
  end
data/pvoutput.gemspec CHANGED
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
19
19
  spec.require_paths = ['lib']
20
20
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
21
21
 
22
- spec.required_ruby_version = '>= 2.4'
22
+ spec.required_ruby_version = '>= 2.5'
23
23
 
24
24
  spec.add_dependency 'httparty'
25
25
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pvoutput
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Ferlito
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-02-06 00:00:00.000000000 Z
11
+ date: 2021-02-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty
@@ -201,14 +201,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
201
201
  requirements:
202
202
  - - ">="
203
203
  - !ruby/object:Gem::Version
204
- version: '2.4'
204
+ version: '2.5'
205
205
  required_rubygems_version: !ruby/object:Gem::Requirement
206
206
  requirements:
207
207
  - - ">="
208
208
  - !ruby/object:Gem::Version
209
209
  version: '0'
210
210
  requirements: []
211
- rubygems_version: 3.0.3
211
+ rubygems_version: 3.1.4
212
212
  signing_key:
213
213
  specification_version: 4
214
214
  summary: Library to speak to the PVOutput API