Releases: pelagornis/plcommand
Releases · pelagornis/plcommand
PLCommand v1.2.6
PLCommand v1.2.5
What's Changed
- Update Tuist Support & Test Part
PLCommand v1.2.4
What's Changed
- Paths have been changed to be added to all supported commands.
- Fixed a problem that the commands that were previously provided did not work in the array.
Git
related tests andSwift Package
related tests have been added.
PLCommand v1.2.3
What's Changed
- Support
Tuist
Command
@Command(\.tuist) var tuist
tuist.build()
tuist.clean()
tuist.fetch()
tuist.edit()
tuist.graph()
tuist.generate()
tuist.migration([])
tuist.scaffold("template", [])
tuist.test()
tuist.run("tuist command")
PLCommand v1.2.2
What's Changed
Add make
Command
@Command(\.make) var makeCommand
makeCommand.run("command")
Support Fastlane
Command
@Command(\.fastlane) var fastlane
fastlane.`init`()
fastlane.tests()
fastlane.snapshot()
fastlane.deliver()
fastlane.frameit()
fastlane.run("fastlane command")
PLCommand v1.2.1
What's Changed
Change the style of the previously supported command (Git, Swift Package) and support it again.
Support Git
Command
@Command(\.git) var git
git.`init`()
git.add()
git.clone(repositoryURL)
git.commit("comment")
git.push()
git.pull(remote: "origin")
git.checkout(branch: "gh-page")
Support Swift Package
Command
@Command(\.package) var swiftPackage
swiftPackage.create()
swiftPackage.create(type: .executable)
swiftPackage.update()
swiftPackage.generateXcodeproj()
swiftPackage.build()
swiftPackage.test()
PLCommand v1.2.0
What's Changed
The plcommand usage has been changed. You can use the Command through the Property wrapper.
import Command
Usage
Zsh Command
@Command(\.zsh) var zsh
zsh.run("command")
Bash Command
@Command(\.bash) var bash
bash.run("command")
The previously provided Git and SwiftPackage commands will be added later.
PLCommand v1.1.1
What's Changed
The previously provided command in PLCommand has been changed to make it easier to use.
Before
PLCommand.Git.`init`()
PLCommand.Git.add()
PLCommand.Git.clone(repositoryURL)
PLCommand.Git.commit("comment")
PLCommand.Git.push()
PLCommand.Git.pull(remote: "origin")
PLCommand.Git.checkout(branch: "gh-page")
After
Git.`init`()
Git.add()
Git.clone(repositoryURL)
Git.commit("comment")
Git.push()
Git.pull(remote: "origin")
Git.checkout(branch: "gh-page")
PLCommand v1.1.0
What's Changed
PLCommand provides some commands to provide user convenience.
More commands will be added in the future.
Git
PLCommand.Git.`init`()
PLCommand.Git.add()
PLCommand.Git.clone(repositoryURL)
PLCommand.Git.commit("comment")
PLCommand.Git.push()
PLCommand.Git.pull(remote: "origin")
PLCommand.Git.checkout(branch: "gh-page")
Swift Package Manager
PLCommand.SwiftPackage.create()
PLCommand.SwiftPackage.create(type: .executable)
PLCommand.SwiftPackage.update()
PLCommand.SwiftPackage.generateXcodeproj()
PLCommand.SwiftPackage.build()
PLCommand.SwiftPackage.test()
- Support: Git and Swift Package Manager Commands.
PLCommand v1.0.2
What's Changed
error: 'plcommand': package 'plcommand' is using Swift tools version 5.8.0 but the installed version is 5.7.1
- Changed: Swift 5.8 -> 5.7
- Support: Docc