Skip to content

Commit

Permalink
Bump version num & document changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeehut committed Apr 19, 2019
1 parent 70b7916 commit b10b9c8
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,24 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
### Security
- None.

## [0.6.0] - 2019-04-19
### Added
- Correctly recognizes App Extensions and doesn't add build phases for them. Fixes [#25](https://github.com/JamitLabs/Accio/issues/25).
- Points to detailed information about conflicting name issues with SwiftPM. Fixes [#26](https://github.com/JamitLabs/Accio/issues/26).
- The `init` command now properly detects test targets and lists them as such in the created manifest file. Fixes [#23](https://github.com/JamitLabs/Accio/issues/23).
### Changed
- Improves reading of supported deployment targets.
- Improves init command by treating empty manifest files like non-existing ones. Fixes [#24](https://github.com/JamitLabs/Accio/issues/24).
### Deprecated
- None.
### Removed
- None.
### Fixed
- Fixes an issue where Accio commands where failing when Git resets failed.
- Fixes an issue where Accio didn't reset changed files untracked by Git.
### Security
- None.

## [0.5.6] - 2019-04-09
### Added
- Adds support for automatically finding schemes named like 'MBProgressHUD Framework tvOS'.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
alt="Codebeat Badge">
</a>
<a href="https://github.com/JamitLabs/Accio/releases">
<img src="https://img.shields.io/badge/Version-0.5.6-blue.svg"
alt="Version: 0.5.6">
<img src="https://img.shields.io/badge/Version-0.6.0-blue.svg"
alt="Version: 0.6.0">
</a>
<img src="https://img.shields.io/badge/Swift-5.0-FFAC45.svg"
alt="Swift: 5.0">
Expand Down
2 changes: 1 addition & 1 deletion Sources/Accio/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Foundation
import SwiftCLI

// MARK: - CLI
let cli = CLI(name: "accio", version: "0.5.6", description: "A dependency manager driven by SwiftPM that works for iOS/tvOS/watchOS/macOS projects.")
let cli = CLI(name: "accio", version: "0.6.0", description: "A dependency manager driven by SwiftPM that works for iOS/tvOS/watchOS/macOS projects.")

cli.commands = [InitCommand(), InstallCommand(), UpdateCommand(), CleanCommand(), ClearCacheCommand(), SetSharedCacheCommand()]
cli.globalOptions.append(contentsOf: GlobalOptions.all)
Expand Down

0 comments on commit b10b9c8

Please sign in to comment.