yt-dlp.rb 0.2.0 → 0.3.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: c4639822ee9cc12b36537bef3593be1582a711ed7cc6f6a9c2ef1d256f6ae0a2
4
- data.tar.gz: 8ee4f512fbde41d3cbc5c08ee09eba422152a6f9e6939f8894b0512ae97e934f
3
+ metadata.gz: be659a834134c03a31293f8ec71064793948135cd10290c73cd4a34ca4e0bb4f
4
+ data.tar.gz: 887269c8de379b14893702fedcf2883e84573e91f2571add6b417576734a81e0
5
5
  SHA512:
6
- metadata.gz: 10045b6b84d6a4c7f9facee6de248130a94424cfdfea92a67544b848ac3ff80f9e9656e316f2014aeedb9652a5a450d6ef7938bbcde5e349b753e4d45810b5f3
7
- data.tar.gz: 9702332b7ac684ef75235cb5d81d42c40e0d8058be1bd425b22c720adc1a2bf28e84430aec4e58f2700fd58d852e8caf8f4def877dfbe509076b92ee848eeced
6
+ metadata.gz: a0ba8bd1d182389fe6aed98374178749eb894b99582588e9f6783b25df0e4a7036150f61c3bf49bab57c12db3b4cb3be63f2759b49aaec7d7139aa693797edc2
7
+ data.tar.gz: d6bb40fe2ec742dc57ed41751eafd4b1c7ed4d30ad83b3ef4db9b551687e341716013570329c2ea58f78c6e256517b5db7bc9d90e21e636f0bddf058cd1838e9
@@ -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,9 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.3.0] - 2024-04-01
4
+ ### Added
5
+ - Upgraded yt-dlp binary to version "2024.03.10"
6
+
3
7
  ## [0.2.0] - 2022-03-06
4
8
  ### Added
5
9
  - 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.0'
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.0
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: []