rtlsdr 0.1.1 → 0.1.2

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: de238a7cd49e550a69286832b36841c553650c097a31fd791337c48c8b1f9cc3
4
- data.tar.gz: 5466c2e13efb99c9c39ea4a448aed2f4e9a827e10149116fc02f45ab39f9536c
3
+ metadata.gz: 710f4bd64dcbffaf300a9c0f224a8f9901a4add441a30ee20cb47618481888b6
4
+ data.tar.gz: 928c43327f57fe1c83322eaac961d81c665dbd29611266147d571f4463c29437
5
5
  SHA512:
6
- metadata.gz: 2a48c2e10ced3a1ef70e3981e2673c1a5a8b9ad0a3254a9ca23128b75ec32ce448282b606ca02e1ce09432a08302aba9e8c6ab68fb82ef25661599c486696d75
7
- data.tar.gz: dc4006cfbdb52e5043d38e0b9815a7feb4b32aee7c34940bae1690e0551dc940f265050ea69f9a641d6b143046349a32d6c21ee42509a46f4b8bcb14b94e77ed
6
+ metadata.gz: 72d6c0589a2c47af7b80b385f8678f0c76dd2bf728878199a536f11d0b29f30dba75779491f3ed6d2f7b6f818c593ff330f7a52e6376945fcf9c59db5431ac3d
7
+ data.tar.gz: e80374925e3c131a5d1fc06a3e06b6e8f17dfa46a3aa04a368289c9998d86dd1d17dbe330172571472b1a2aa35eeadec0cc2ff903517ca621429357eb27d75aa
data/CHANGELOG.md CHANGED
@@ -2,6 +2,15 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [0.1.2] - 2025-06-07
6
+
7
+ ### Added
8
+
9
+ ### Changed
10
+
11
+ ### Fixed
12
+
13
+
5
14
  ## [0.1.1] - 2025-06-07
6
15
 
7
16
  ### Added
data/Rakefile CHANGED
@@ -169,6 +169,30 @@ end
169
169
  desc "Compile native extensions (depends on librtlsdr)"
170
170
  task compile: :build_librtlsdr
171
171
 
172
+ task :publish_release do
173
+ desc "Bump version, update CHANGELOG, commit, tag, and push"
174
+ puts "This task will bump the version, update CHANGELOG.md, commit the changes, create a git tag, and push everything to the remote repository."
175
+ puts "Make sure you have committed all your changes before running this task."
176
+ puts "Do you want to continue? (yes/no)"
177
+ answer = $stdin.gets.chomp.downcase
178
+ if answer == "yes"
179
+ Rake::Task["version:patch"].invoke
180
+ system("bundle install")
181
+ puts "Committing changes..."
182
+ system("git add -A")
183
+ system("git commit -m 'Bump version to #{RTLSDR::VERSION}'")
184
+ puts "Creating git tag..."
185
+ system("git tag v#{RTLSDR::VERSION}")
186
+ puts "Pushing changes and tags to remote repository..."
187
+ system("git push && git push --tags")
188
+ puts "Release process completed successfully!"
189
+
190
+ Rake::Task["release"].invoke
191
+ else
192
+ puts "Release process aborted."
193
+ end
194
+ end
195
+
172
196
  # Version management tasks
173
197
  namespace :version do
174
198
  desc "Bump patch version (x.y.z -> x.y.z+1)"
@@ -12,5 +12,5 @@ module RTLSDR
12
12
  #
13
13
  # @return [String] Current gem version
14
14
  # @since 0.1.0
15
- VERSION = "0.1.1"
15
+ VERSION = "0.1.2"
16
16
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rtlsdr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - joshfng