semantic_release 1.0.0 → 1.0.1
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 +6 -0
- data/lib/semantic_release/updaters/changelog.rb +1 -1
- data/lib/semantic_release/version.rb +1 -1
- metadata +1 -5
- data/.rspec +0 -3
- data/.rubocop.yml +0 -19
- data/.semver +0 -1
- data/Rakefile +0 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 91fc39f15e36b70debd6a5aef9b8046709d9a2afb9e67af57745e81a49b38968
|
4
|
+
data.tar.gz: b663616e65a61c83a84524927aff9277a5c28aee526dfba28e05972589aa1551
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a670190a1415055ce97e9271eb8937080096cbea25bcc92ad766f5d3699ce35912848f1bc7206dc308ee7489fe3ea3ef999dc417a61669bb260663358d64d93a
|
7
|
+
data.tar.gz: 7b761dfa2c043b381d0156843172d84bec9d7b48d7b5f6eefd161a200aa1d360cab1553ee2009ad30fd9ea443ad3971e80f4f5330a34684b96717db0d86ceee7
|
data/CHANGELOG.md
CHANGED
@@ -18,7 +18,7 @@ module SemanticRelease
|
|
18
18
|
heading_marker = filepath.end_with?(".rdoc") ? "==" : "##"
|
19
19
|
content = File.read(filepath)
|
20
20
|
File.open(filepath, "w") do |f|
|
21
|
-
f.puts("#{heading_marker} #{current_version} (#{Time.now.strftime("%d %B %Y")})\n")
|
21
|
+
f.puts("#{heading_marker} #{current_version} (#{Time.now.strftime("%d %B %Y")})\n\n")
|
22
22
|
f.print(content)
|
23
23
|
end
|
24
24
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: semantic_release
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Bull
|
@@ -18,13 +18,9 @@ executables: []
|
|
18
18
|
extensions: []
|
19
19
|
extra_rdoc_files: []
|
20
20
|
files:
|
21
|
-
- ".rspec"
|
22
|
-
- ".rubocop.yml"
|
23
|
-
- ".semver"
|
24
21
|
- CHANGELOG.md
|
25
22
|
- LICENSE.txt
|
26
23
|
- README.md
|
27
|
-
- Rakefile
|
28
24
|
- lib/semantic_release.rb
|
29
25
|
- lib/semantic_release/rake_task.rb
|
30
26
|
- lib/semantic_release/semver.rb
|
data/.rspec
DELETED
data/.rubocop.yml
DELETED
@@ -1,19 +0,0 @@
|
|
1
|
-
require:
|
2
|
-
- rubocop-rake
|
3
|
-
- rubocop-rspec
|
4
|
-
|
5
|
-
AllCops:
|
6
|
-
TargetRubyVersion: 3.1
|
7
|
-
NewCops: enable
|
8
|
-
|
9
|
-
Layout/LineContinuationLeadingSpace:
|
10
|
-
EnforcedStyle: leading
|
11
|
-
|
12
|
-
Style/Documentation:
|
13
|
-
Enabled: false
|
14
|
-
|
15
|
-
Style/StringLiterals:
|
16
|
-
EnforcedStyle: double_quotes
|
17
|
-
|
18
|
-
Style/StringLiteralsInInterpolation:
|
19
|
-
EnforcedStyle: double_quotes
|
data/.semver
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"major":1,"minor":0,"patch":0}
|
data/Rakefile
DELETED
@@ -1,14 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require "bundler/gem_tasks"
|
4
|
-
|
5
|
-
require "rspec/core/rake_task"
|
6
|
-
RSpec::Core::RakeTask.new(:spec)
|
7
|
-
|
8
|
-
require "rubocop/rake_task"
|
9
|
-
RuboCop::RakeTask.new
|
10
|
-
|
11
|
-
require_relative "lib/semantic_release/rake_task"
|
12
|
-
SemanticRelease::RakeTask.new
|
13
|
-
|
14
|
-
task default: %i[spec rubocop]
|