rtlsdr 0.1.5 → 0.1.6
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 +4 -4
- data/CHANGELOG.md +14 -0
- data/Rakefile +4 -1
- data/lib/rtlsdr/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e6cf077ab3bad36078506e7669f9f028f5673d9e4fa7ed42fef23328f50a00b7
|
4
|
+
data.tar.gz: bcad8fabea37fdc5a8c8003651e96d7e08723813189772954b2963e11a65b1c3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 33fe75344366b76dea1ffe5b8e5e65ac32828c9b33f010bd9c86e125f459b51c04be18e18c02e54cb2a14defa1bf77b6beeb008bfab041c1c9aaa0ea218c373f
|
7
|
+
data.tar.gz: 1a23aff4149a587d8249b3e39d88ec7fdb0a18929fafe2270c79efb72d31749e9289ef4c845ab33e16c6d834e3f4ac119193e10ffebaca6f7394e460e0c8777f
|
data/CHANGELOG.md
CHANGED
data/Rakefile
CHANGED
@@ -7,6 +7,8 @@ require "rubocop/rake_task"
|
|
7
7
|
require "rdoc/task"
|
8
8
|
require "yard"
|
9
9
|
|
10
|
+
# rubocop:disable Metrics/BlockLength
|
11
|
+
|
10
12
|
RSpec::Core::RakeTask.new(:spec)
|
11
13
|
|
12
14
|
RuboCop::RakeTask.new
|
@@ -171,7 +173,6 @@ task compile: :build_librtlsdr
|
|
171
173
|
|
172
174
|
desc "Bump version, update CHANGELOG, commit, tag, and push"
|
173
175
|
task :publish_release do
|
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
176
|
puts "Make sure you have committed all your changes before running this task."
|
176
177
|
puts "Do you want to continue? (yes/no)"
|
177
178
|
|
@@ -290,3 +291,5 @@ def bump_version(type) # rubocop:disable Metrics/AbcSize,Metrics/MethodLength
|
|
290
291
|
File.write("CHANGELOG.md", updated_changelog)
|
291
292
|
puts "Updated CHANGELOG.md with new version entry"
|
292
293
|
end
|
294
|
+
|
295
|
+
# rubocop:enable Metrics/BlockLength
|
data/lib/rtlsdr/version.rb
CHANGED