Skip to content

Commit

Permalink
Update docs for set_changelog action (#10368)
Browse files Browse the repository at this point in the history
* Update docs for set_changelog action

* Address feedback
  • Loading branch information
KrauseFx committed Sep 25, 2017
1 parent af5e2d5 commit 62f3d07
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions fastlane/lib/fastlane/actions/set_changelog.rb
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ def self.description
def self.details
[
"This is useful if you have only one changelog for all languages.",
"You can store the changelog in `#{default_changelog_path}` and it will automatically get loaded from there. This integration is useful if you support e.g. 10 languages and want to use the same \"What's new\"-text for all languages."
"You can store the changelog in `#{default_changelog_path}` and it will automatically get loaded from there. This integration is useful if you support e.g. 10 languages and want to use the same \"What's new\"-text for all languages.",
"Defining the version is optional, fastlane will try to automatically detect it if you don't provide one"
].join("\n")
end

Expand Down Expand Up @@ -142,7 +143,8 @@ def self.is_supported?(platform)

def self.example_code
[
'set_changelog(app_identifier: "com.krausefx.app", version: "1.0", changelog: "All Languages")'
'set_changelog(changelog: "Changelog for all Languages")',
'set_changelog(app_identifier: "com.krausefx.app", version: "1.0", changelog: "Changelog for all Languages")'
]
end

Expand Down

0 comments on commit 62f3d07

Please sign in to comment.