Releases

5.0.0

A Swift package for resolving released versions from a Git repository
JohnSundell/Releases

What's New

Releases 5.0.0

2019-12-04T12:35:50Z

Releases now uses Swift 5.1.

View build details and download artifacts on buddybuild:
Releases (iOS, Releases - Debug)

🚢 Releases

Using Releases you can easily resolve all released versions from a Git repository, in either a Swift script or command line tool. It supports both remote & local repositories and provides convenience APIs for sorting, filtering out pre-released versions, etc.

Usage

Simply call Releases.versions(for: url) and you'll get an array of Version back:

let url = URL(string: "https://github.com/johnsundell/unbox")!
let releases = Releases.versions(for: url)

// Print the latest version
print(releases.last)

Remove all pre-release versions (like Alpha, Beta, etc):

let url = URL(string: "https://github.com/johnsundell/unbox)!
let releases = Releases.versions(for: url).withoutPreReleases()

// Print the latest stable version
print(releases.last)

Installation

For scripts

  • Install Marathon.
  • Add Releases to Marathon using $ marathon add https://github.com/JohnSundell/Releases.git.
  • Alternatively, add https://github.com/JohnSundell/Releases.git to your Marathonfile.
  • Write your script, then run it using $ marathon run yourScript.swift.

For command line tools

  • Add .package(url: "https://github.com/JohnSundell/Releases.git", from: "2.0.0") to your Package.swift file's dependencies.
  • Update your packages using $ swift package update.

Help, feedback or suggestions?

  • Open an issue if you need help, if you found a bug, or if you want to discuss a feature request.
  • Open a PR if you want to make some change to Releases.
  • Contact @johnsundell on Twitter for discussions, news & announcements about Releases & other projects.

Description

  • Swift Tools 5.1.0
View More Packages from this Author

Dependencies

Last updated: Wed Mar 13 2024 18:54:34 GMT-0900 (Hawaii-Aleutian Daylight Time)