yt-dlp.rb 0.4.0 → 0.6.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: de6281ff8d16272f5519a4e33001a3895ce4cb38152edb44e81abd34277abb39
4
- data.tar.gz: 814ce6a781aad8cf1cbcc368ebc108603ba7f0aeca4f7a68de54741c9b309705
3
+ metadata.gz: b6260863ce438e1a64082777248c2c5b1a4bd7430c02088b615f37eb4e2bff6a
4
+ data.tar.gz: d7949bf1f7baed8a456941b0681995d658add4ab0be1ce69538c5f394e63c593
5
5
  SHA512:
6
- metadata.gz: dce11e9f0536bbeaeeed31980a7053a49feeeb808a7b4977864c3164e6c15dd5ad44f347b6eb7d89f85b15611caba61731b93647fe32b5b00f6a62e04b1d886f
7
- data.tar.gz: ac14aa209880b47f2bc210f54ef577833f13a149ebd3e1ec4e34b8133b7b8512a96bacc00de11c0f1a0d2ad84b11a726d9c2d36f6194dd50df04b3cec06219b1
6
+ metadata.gz: 33a2f9d3c722280b49652aaf6b67ac548c56e1468e94cd42a3b29a748c7522fc7991f54e6826fae78a7a1fe05ee89bde660825596c6060f84daa67c1650a645b
7
+ data.tar.gz: 1f3d2b6ee943ddf245fb1b7d7fb0762a8dbcbd14c370ca8c4491031bc4657f614342014f4bf92d28b3550bcc8c02c9c33b6313a76bf2a9a0ac3618dc5f12a18a
@@ -95,6 +95,11 @@ jobs:
95
95
  git tag "v${{ steps.increment_version.outputs.version }}"
96
96
  git push origin HEAD:master
97
97
  git push origin "v${{ steps.increment_version.outputs.version }}"
98
+ - name: Trigger Publish Gem workflow
99
+ if: steps.version_check.outputs.changed == 'true'
100
+ run: gh workflow run "Publish Gem" --ref "v${{ steps.increment_version.outputs.version }}"
101
+ env:
102
+ GH_TOKEN: ${{ secrets.PAT_TOKEN }}
98
103
 
99
104
  - name: No update needed
100
105
  if: steps.version_check.outputs.changed == 'false'
@@ -1,9 +1,11 @@
1
1
  name: Publish Gem
2
2
 
3
3
  on:
4
+ workflow_dispatch:
4
5
  push:
5
6
  tags:
6
7
  - v*
8
+
7
9
  jobs:
8
10
  build:
9
11
  runs-on: ubuntu-latest
@@ -11,10 +13,17 @@ jobs:
11
13
  steps:
12
14
  - uses: actions/checkout@v5
13
15
 
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
16
+ - name: Configure Git
17
+ run: |
18
+ git config --local user.email "github-actions[bot]@users.noreply.github.com"
19
+ git config --local user.name "github-actions[bot]"
20
+
21
+ - name: Release gem
22
+ run: |
23
+ mkdir -p ~/.gem
24
+ echo ":rubygems_api_key: ${{ secrets.RUBYGEMS_API_KEY }}" > ~/.gem/credentials
25
+ chmod 600 ~/.gem/credentials
26
+ gem build yt-dlp.rb.gemspec
27
+ VERSION=$(ruby -e "puts Gem::Specification.load('yt-dlp.rb.gemspec').version")
28
+ gem push yt-dlp.rb-${VERSION}.gem
29
+
data/CHANGELOG.md CHANGED
@@ -1,4 +1,16 @@
1
1
  # Changelog
2
+ ## [0.6.0] - 2025-12-08
3
+ ### Added
4
+ - Upgraded yt-dlp binary to version "2025.12.08"
5
+
6
+ ## [0.5.0] - 2025-11-12
7
+ ### Added
8
+ - Upgraded yt-dlp binary to version "2025.11.12"
9
+
10
+
11
+ ## [0.4.0] - 2025-10-30
12
+ ### Added
13
+ - Upgraded yt-dlp binary to version "2025.10.22"
2
14
 
3
15
  ## [0.3.0] - 2024-04-01
4
16
  ### Added
@@ -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.4.0'
10
+ VERSION = '0.6.0'
11
11
  end
data/vendor/bin/yt-dlp CHANGED
Binary file
Binary file
metadata CHANGED
@@ -1,13 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yt-dlp.rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - andrepcg
8
+ autorequire:
8
9
  bindir: bin
9
10
  cert_chain: []
10
- date: 1980-01-02 00:00:00.000000000 Z
11
+ date: 2026-01-09 00:00:00.000000000 Z
11
12
  dependencies:
12
13
  - !ruby/object:Gem::Dependency
13
14
  name: terrapin
@@ -112,6 +113,7 @@ homepage: https://github.com/andrepcg/yt-dlp.rb
112
113
  licenses:
113
114
  - MIT
114
115
  metadata: {}
116
+ post_install_message:
115
117
  rdoc_options: []
116
118
  require_paths:
117
119
  - lib
@@ -126,7 +128,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
126
128
  - !ruby/object:Gem::Version
127
129
  version: '0'
128
130
  requirements: []
129
- rubygems_version: 3.6.9
131
+ rubygems_version: 3.4.20
132
+ signing_key:
130
133
  specification_version: 4
131
134
  summary: yt-dlp wrapper for Ruby
132
135
  test_files: []