release-notes 3.0.0 → 3.1.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 +4 -4
- data/CHANGELOG.md +19 -0
- data/lib/release/notes/configurable.rb +1 -1
- data/lib/release/notes/configuration.rb +6 -0
- data/lib/release/notes/git.rb +1 -1
- data/lib/release/notes/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0ffa78423d6770331d46c798c4f671984bca8fd896f4ca3238b304163c323b93
|
|
4
|
+
data.tar.gz: d64dcf45b0ce332cf57f04796f20a9d133d0f1330733fef796942033d87358c0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5b97056a68f3aacb0cac39b4a38889f90faf97eb55682487db95ab40873d2351def8e793855d17448627c9e7a1fb5d9af0778b9b8828e2b4a0bd35dce2edfe63
|
|
7
|
+
data.tar.gz: bfe153fcfc21253aaa4ce136099ddadc2d7e9f44462a24d99c36d74ce243a2bd921410e532fb4f2179b2e12d7b7d44700f97b16cccf4d15eb69c94cc78c1346a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# Release Notes
|
|
2
2
|
|
|
3
|
+
## v3.0.0
|
|
4
|
+
|
|
5
|
+
**Implemented enhancements:**
|
|
6
|
+
|
|
7
|
+
- [Refactor] Log.rb for readability/maintainability
|
|
8
|
+
- [Refactor] DateFormat(ter) and it's usage in log.rb
|
|
9
|
+
- [Refactor] Delegate all config related methods in one module
|
|
10
|
+
|
|
11
|
+
**Fixed bugs:**
|
|
12
|
+
|
|
13
|
+
- Update documentation
|
|
14
|
+
- [Refactor] prettify as class/ remove module
|
|
15
|
+
|
|
16
|
+
**Miscellaneous:**
|
|
17
|
+
|
|
18
|
+
- administration updates
|
|
19
|
+
- [Refactor] System as a class with class & instance methods
|
|
20
|
+
- Update our own release notes and label outputs
|
|
21
|
+
|
|
3
22
|
## v2.0.0
|
|
4
23
|
|
|
5
24
|
**Implemented enhancements:**
|
|
@@ -9,7 +9,7 @@ module Release
|
|
|
9
9
|
:bugs, :misc, :feature_title,
|
|
10
10
|
:bug_title, :misc_title, :log_all_title, :single_label,
|
|
11
11
|
:output_file, :temp_file, :link_commits?, :all_labels,
|
|
12
|
-
:prettify_messages?, :release_notes_exist?,
|
|
12
|
+
:prettify_messages?, :release_notes_exist?, :for_each_ref_format,
|
|
13
13
|
:force_rewrite, prefix: :config, to: :"Release::Notes.configuration"
|
|
14
14
|
end
|
|
15
15
|
end
|
|
@@ -126,6 +126,11 @@ module Release
|
|
|
126
126
|
# @return [Boolean]
|
|
127
127
|
attr_accessor :single_label
|
|
128
128
|
|
|
129
|
+
# Controls what will be passed to the format flag in `git for-each-ref`
|
|
130
|
+
# Defaults to `tag`.
|
|
131
|
+
# @return [String]
|
|
132
|
+
attr_accessor :for_each_ref_format
|
|
133
|
+
|
|
129
134
|
def initialize
|
|
130
135
|
@output_file = "./RELEASE_NOTES.md"
|
|
131
136
|
@temp_file = "./release-notes.tmp.md"
|
|
@@ -148,6 +153,7 @@ module Release
|
|
|
148
153
|
@prettify_messages = false
|
|
149
154
|
@force_rewrite = false
|
|
150
155
|
@single_label = true
|
|
156
|
+
@for_each_ref_format = "tag"
|
|
151
157
|
end
|
|
152
158
|
|
|
153
159
|
# @return [String]
|
data/lib/release/notes/git.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: release-notes
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
4
|
+
version: 3.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Drew Monroe
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-01-
|
|
11
|
+
date: 2019-01-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|