fcc 1.4.1 → 1.4.3

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: 92beb72946f9fc6f903ccc6092daaf1a7218ee317f60a3ee540e57455877fc7d
4
- data.tar.gz: 71cbb93562b568844f8163c0cd981492bec01f262173d71331bb95eaccaee8b5
3
+ metadata.gz: 9d46399818253891994a47db11b357e1e03bc7427e6fb483eaa07a284aaa8356
4
+ data.tar.gz: 59981fea87f8f9804d10007b4b39778d4051d38ace09ae1066d1c352fef934b1
5
5
  SHA512:
6
- metadata.gz: ed6c541358a4b81eee8c1a37c94435b9e2ed3904f392cfa4f05d24ce947a6bd162d47d68fb8600e3850abb458b7595a9bcab3d278cb3da5f85afa54a58e50312
7
- data.tar.gz: 18304970201bb0c9becfc758ff96a95f62b7246922c51832b48b4a0e8f97a0ab14608e38685a80033f1e21063f72ba25f835afa544be30a7dd263f9a31835016
6
+ metadata.gz: f9e5e374fedfdcf4c4a4227661a911599c713d7a0e42662d457ff01f71097914c4948b437b2546859ba14d03f5f71996178d21515a50f558abf9f3d506cb18d5
7
+ data.tar.gz: da5c575ed5b7e24a9d22cb65b5b3a040f42d8132bf4ddf6ef7bc95501939f51c8be7c570a2a4ee101c9095ed92527356d03a3fca5eac01389a6a8d1401d6b85f
@@ -7,7 +7,7 @@ on:
7
7
  jobs:
8
8
  release:
9
9
  name: Release
10
- runs-on: ubuntu-18.04
10
+ runs-on: ubuntu-latest
11
11
  steps:
12
12
  - name: Checkout
13
13
  uses: actions/checkout@v2
@@ -15,9 +15,9 @@ jobs:
15
15
  fetch-depth: 0
16
16
  persist-credentials: false
17
17
  - name: Setup Node.js
18
- uses: actions/setup-node@v2
18
+ uses: actions/setup-node@v3
19
19
  with:
20
- node-version: 14
20
+ node-version: 18
21
21
  - name: Install Dependencies
22
22
  run: yarn install --frozen-lockfile
23
23
  - name: Release
@@ -12,7 +12,7 @@ jobs:
12
12
  fail-fast: false
13
13
  matrix:
14
14
  os: [ ubuntu-latest ]
15
- ruby: [ '2.7' ]
15
+ ruby: [ '3.0', '3.1', '3.2' ]
16
16
  runs-on: ${{ matrix.os }}
17
17
  steps:
18
18
  - uses: actions/checkout@v3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  fcc changelog
2
2
 
3
+ ## [1.4.3](https://github.com/jkeen/fcc/compare/v1.4.2...v1.4.3) (2024-03-20)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * switch another url reference to use https ([c6321d1](https://github.com/jkeen/fcc/commit/c6321d1897a702b8c090eea8abce21ac562d5082))
9
+
10
+ ## [1.4.2](https://github.com/jkeen/fcc/compare/v1.4.1...v1.4.2) (2024-03-20)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * specify https url, as http url is now forbidden ([58e9205](https://github.com/jkeen/fcc/commit/58e9205c21a7c40286984f9b1a3980cf42466a9f))
16
+
3
17
  ## [1.4.1](https://github.com/jkeen/fcc/compare/v1.4.0...v1.4.1) (2023-02-12)
4
18
 
5
19
  # 1.4.0 (2022-11-25)
@@ -1,10 +1,9 @@
1
1
  require 'httparty'
2
-
3
2
  module FCC
4
3
  module Station
5
4
  class Index
6
5
  include HTTParty
7
- base_uri 'publicfiles.fcc.gov'
6
+ base_uri 'https://publicfiles.fcc.gov'
8
7
 
9
8
  attr_accessor :service
10
9
 
@@ -4,7 +4,7 @@ module FCC
4
4
  module Station
5
5
  class Info
6
6
  include HTTParty
7
- base_uri 'publicfiles.fcc.gov'
7
+ base_uri 'https://publicfiles.fcc.gov'
8
8
 
9
9
  attr_accessor :results, :service
10
10
 
data/lib/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FCC
4
- VERSION = '1.4.1'
4
+ VERSION = '1.4.3'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fcc
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.1
4
+ version: 1.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeff Keen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-02-12 00:00:00.000000000 Z
11
+ date: 2024-03-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -179,8 +179,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
179
179
  - !ruby/object:Gem::Version
180
180
  version: '0'
181
181
  requirements: []
182
- rubyforge_project:
183
- rubygems_version: 2.7.6
182
+ rubygems_version: 3.3.5
184
183
  signing_key:
185
184
  specification_version: 4
186
185
  summary: Searches the FCC's FM, AM, and TV databases