yt-dlp.rb 0.2.0 → 0.3.1

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: c4639822ee9cc12b36537bef3593be1582a711ed7cc6f6a9c2ef1d256f6ae0a2
4
- data.tar.gz: 8ee4f512fbde41d3cbc5c08ee09eba422152a6f9e6939f8894b0512ae97e934f
3
+ metadata.gz: b93b5b1c935008fcdba5f37f507509d5f7c2146af82629da99c59d3b56d93070
4
+ data.tar.gz: 277839c1438eb810bde9fb86bf100e9cfe417a1ac0cb93b27625238eb84ccf59
5
5
  SHA512:
6
- metadata.gz: 10045b6b84d6a4c7f9facee6de248130a94424cfdfea92a67544b848ac3ff80f9e9656e316f2014aeedb9652a5a450d6ef7938bbcde5e349b753e4d45810b5f3
7
- data.tar.gz: 9702332b7ac684ef75235cb5d81d42c40e0d8058be1bd425b22c720adc1a2bf28e84430aec4e58f2700fd58d852e8caf8f4def877dfbe509076b92ee848eeced
6
+ metadata.gz: d76ca86823257720c52975f805703da9bc27012354b9571fa5af293665697f54aa3082d6a0f5331b3863bac54da045daed07f6f9adea0bb14881d6327e62b356
7
+ data.tar.gz: ad2e5bde68e9856e0e96905527a62b0f92115d8a190f8329cb869271b9471a677964f04a24f5cdda53a9d13817bdfe327e882869841b234f0fbd6936eb5facee
@@ -0,0 +1,20 @@
1
+ name: Publish Gem
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - v*
7
+ jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
+
11
+ steps:
12
+ - uses: actions/checkout@v1
13
+
14
+ - name: Release Gem
15
+ if: contains(github.ref, 'refs/tags/v')
16
+ uses: cadwallion/publish-rubygems-action@master
17
+ env:
18
+ GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
19
+ RUBYGEMS_API_KEY: ${{secrets.RUBYGEMS_API_KEY}}
20
+ RELEASE_COMMAND: rake release
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.3.1] - 2024-04-01
4
+ ### Fix
5
+ - Use correct linux binary
6
+
7
+ ## [0.3.0] - 2024-04-01
8
+ ### Added
9
+ - Upgraded yt-dlp binary to version "2024.03.10"
10
+
3
11
  ## [0.2.0] - 2022-03-06
4
12
  ### Added
5
13
  - Upgraded yt-dlp binary to version "2022.02.04"
@@ -7,5 +7,5 @@
7
7
  module YtDlp
8
8
  # Semantic Version as well as the bundled binary version.
9
9
  # "(major).(minor).(teeny).(pre-release).(binary-version)"
10
- VERSION = '0.2.0'
10
+ VERSION = '0.3.1'
11
11
  end
data/vendor/bin/yt-dlp CHANGED
Binary file
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yt-dlp.rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - andrepcg
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-03-06 00:00:00.000000000 Z
11
+ date: 2024-04-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: terrapin
@@ -102,6 +102,7 @@ extensions: []
102
102
  extra_rdoc_files: []
103
103
  files:
104
104
  - ".github/workflows/ci.yml"
105
+ - ".github/workflows/publish_gem.yml"
105
106
  - ".gitignore"
106
107
  - ".rubocop.yml"
107
108
  - ".rubocop_todo.yml"
@@ -125,7 +126,7 @@ homepage: https://github.com/andrepcg/yt-dlp.rb
125
126
  licenses:
126
127
  - MIT
127
128
  metadata: {}
128
- post_install_message:
129
+ post_install_message:
129
130
  rdoc_options: []
130
131
  require_paths:
131
132
  - lib
@@ -140,8 +141,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
140
141
  - !ruby/object:Gem::Version
141
142
  version: '0'
142
143
  requirements: []
143
- rubygems_version: 3.1.4
144
- signing_key:
144
+ rubygems_version: 3.5.3
145
+ signing_key:
145
146
  specification_version: 4
146
147
  summary: yt-dlp wrapper for Ruby
147
148
  test_files: []