radius-toolbelt 0.0.4 → 0.0.5
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/lib/radius/toolbelt/release_helpers.rb +13 -1
- data/lib/radius/toolbelt/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7dffaa418d2856dfa875f9df58e9bd660ee6dbae
|
|
4
|
+
data.tar.gz: 094bd84f7a5f79aa23c4b1dc1b10967561666608
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f5315f5a558ed701f45bf8d4f1bfea4a43c163c6b8c817a4351d3dd5a8f378e7d3aa2a04f113a5c81fd696db5fa861187182eafd58cd01457a3ba835daea4fa4
|
|
7
|
+
data.tar.gz: d5be13e1680cc1e3e4661c618d6126233f143e9f75a65a055e15ef9c1fb21c8759439e5eb1e3cfcf6640a37844c778642695a8d47bf7e6677548da087f8b65c1
|
|
@@ -25,7 +25,19 @@ module Radius
|
|
|
25
25
|
|
|
26
26
|
def release_github(repo, release_name, version, files)
|
|
27
27
|
tag_name = "v#{version}"
|
|
28
|
-
body =
|
|
28
|
+
body = <<EOF
|
|
29
|
+
Bug Fixes:
|
|
30
|
+
|
|
31
|
+
- TODO: Describe any bug fixes
|
|
32
|
+
|
|
33
|
+
Enhancements:
|
|
34
|
+
|
|
35
|
+
- TODO: Describe any new features or enhancements
|
|
36
|
+
|
|
37
|
+
Deprecations:
|
|
38
|
+
|
|
39
|
+
- TODO: Describe any eprecations
|
|
40
|
+
EOF
|
|
29
41
|
token = github_token
|
|
30
42
|
|
|
31
43
|
r = ReleaseGithub.new repo, token, tag_name, release_name, body, files
|