fastlane-plugin-semantic_release 1.0.2 → 1.0.3

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: a0d36b85b2320a1df53dbf3763dfc1bc4fa9bdfad599f032ff2d5ea320c65328
4
- data.tar.gz: 61e35082c7b62e22873b42ba21c9c16d3d3041c167357d9c2bcf3b679bd3bb6f
3
+ metadata.gz: 8134d572a11bcf62c87c56fd4d19bfe9add7f1db8bb634b8ad77e2c45c773c5e
4
+ data.tar.gz: f6bd59480caf65da4ac4d2e004a846e46d981fdc36ce57f51057b2552d362079
5
5
  SHA512:
6
- metadata.gz: 6b1c95f31840c0f65634472136d73e398317d9bc64edbaee5caefce6e4e6308edf15a8f78873c13384ff2d59b7ab7b48bf2786f279c81d2e8b708a3c35ace88b
7
- data.tar.gz: c917d1ff56ddec4295823857a832c5c9f736049d60437e48ed5a4daa39bce5dba63e26007cffae0c9c1f2f6da8998430a24520af374aeb414a2c9b41f7967f35
6
+ metadata.gz: 1e0a5f40418c4e822962c986dc8affe30c2e9e327f5d980cfee1ce5ea4756121592661ee9403b7b1d7fd948f7460d0c3eaed1694394a35ba055a275119ede00c
7
+ data.tar.gz: 4e02174887da617553c59749d0c321702a82ffdc79c889e2823b340783b9f445e92cada5da6a5e969c97c539d8b9c38c966abbf4b41ab46b7a3051a7b5b70d05
@@ -39,10 +39,12 @@ module Fastlane
39
39
  def self.markdown(commits, version, commit_url, params)
40
40
  sections = params[:sections]
41
41
 
42
+ title = version
43
+ title += " #{params[:title]}" if params[:title]
44
+
42
45
  # Begining of release notes
43
- result = "# #{version} #{params[:title]}"
46
+ result = "##{title} (#{Date.today})"
44
47
  result += "\n"
45
- result += "(#{Date.today})"
46
48
 
47
49
  params[:order].each do |type|
48
50
  # write section only if there is at least one commit
@@ -1 +1 @@
1
- module Fastlane module SemanticRelease VERSION="1.0.2" end end
1
+ module Fastlane module SemanticRelease VERSION = "1.0.3" end end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-semantic_release
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jiří Otáhal
@@ -169,7 +169,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
169
169
  version: '0'
170
170
  requirements: []
171
171
  rubyforge_project:
172
- rubygems_version: 2.7.6
172
+ rubygems_version: 2.7.3
173
173
  signing_key:
174
174
  specification_version: 4
175
175
  summary: Automated version managment and generator of release notes.