trollolo 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/burndown_chart.rb +1 -1
- data/lib/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: 8cabe923d7b745f1b1b827dcb3c4a871e2e40bf8
|
4
|
+
data.tar.gz: 074943b15590c60c655fc33802925b22b1af30ac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 00101c85f06e2c57ec8ee2507cfb5b37bd5115e6bc130285060920dc5efbe429704d2f7c216d4ec3fce624457e9681f9f4c595fd9d4fcb055c0c27554d5f9f13
|
7
|
+
data.tar.gz: 53b2241a7d8bd70388846f089001ecce7fb9ace7985ed0dd5006a10f1ed74380e424c1e385f54f55449d327129fe8bb4871640013975b37a9974365edfd2e757
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,12 @@
|
|
3
3
|
## Master (unreleased)
|
4
4
|
|
5
5
|
|
6
|
+
## Version 0.1.1
|
7
|
+
|
8
|
+
* Fix the bug introduced whith always setting the burndown chart as the cover
|
9
|
+
for `burndown --plot-to-board`, as it only worked with files in the current
|
10
|
+
directory.
|
11
|
+
|
6
12
|
## Version 0.1.0
|
7
13
|
|
8
14
|
* Fix `plot-to-board` option in the burndown command when it is used together
|
data/lib/burndown_chart.rb
CHANGED
@@ -218,7 +218,7 @@ class BurndownChart
|
|
218
218
|
name += "/burndown-#{sprint.to_s.rjust(2, '0')}.png"
|
219
219
|
card_id = board.burndown_card_id
|
220
220
|
trello.add_attachment(card_id, name)
|
221
|
-
trello.make_cover(card_id,
|
221
|
+
trello.make_cover(card_id, "burndown-#{sprint.to_s.rjust(2, '0')}.png")
|
222
222
|
end
|
223
223
|
end
|
224
224
|
|
data/lib/version.rb
CHANGED