Skip to content

Releases: pelagornis/plcommand

PLCommand v1.2.5

04 Dec 19:04
Compare
Choose a tag to compare

What's Changed

  • Update Tuist Support & Test Part

PLCommand v1.2.4

04 Dec 18:34
Compare
Choose a tag to compare

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 and Swift Package related tests have been added.

PLCommand v1.2.3

01 Dec 03:20
Compare
Choose a tag to compare

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

17 Nov 08:32
Compare
Choose a tag to compare

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

11 Sep 00:01
Compare
Choose a tag to compare

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

10 Sep 23:16
Compare
Choose a tag to compare

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

18 Aug 16:00
2466cd8
Compare
Choose a tag to compare

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

07 Jun 17:07
b07f06a
Compare
Choose a tag to compare

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

15 May 17:14
Compare
Choose a tag to compare

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

PLCommand v1.0.1

31 Mar 17:45
Compare
Choose a tag to compare

Swift tool version Change (5.7 -> 5.8)

// swift-tools-version: 5.8

And

Documenting source code