Skip to content

Releases: yumemi-inc/danger-swift-shoki

0.3.0

29 Nov 06:11
a15a88f
Compare
Choose a tag to compare

What's Changed

  • update: swift settings by @novr in #14

Full Changelog: v0.2.1...v0.3.0

0.2.1

29 Nov 06:13
f145c77
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.2.0...v0.2.1

0.2.0

14 Dec 07:36
e0941e5
Compare
Choose a tag to compare

Changes

Enhanced

  • API Responsibility (#4 )

CONTAINS API BREAKING CHANGES!!

Migration Guide from 0.1.x

Old API New API
var result = CheckResult(title: "Result Title") var report = danger.shoki.makeInitialReport(title: "Report Title")
result.check("CheckTitle") { return .good } danger.shoki.check("Check Title", into: &report) { return .good }
result.check("CheckTitle") { warn("Warning Message"); return .acceptable } danger.shoki.check("Check Title", into: &report) { return .acceptable(warningMessage: "Warning Message") }
result.check("CheckTitle") { fail("Failure Message"); return .rejected } danger.shoki.check("Check Title", into: &report) { return .rejected(failureMessage: "Failure Message") }
result.askReviewer(to: "Do something") danger.shoki.askReviewer(to: "Do something", into: &report)

You can also check this PR to see how we migrated from 0.1.1 to 0.2.0.

0.1.1

25 Nov 05:44
0e81991
Compare
Choose a tag to compare

Enhanced

  • Add details to README.md

0.1.0

24 Nov 05:13
df2d9c8
Compare
Choose a tag to compare

Initial Release 🎉