Skip to content

Commit

Permalink
Merge pull request #70 from veracode/bump-version-0.5.0
Browse files Browse the repository at this point in the history
Update release version to 0.5.0
  • Loading branch information
bmxav authored Sep 11, 2024
2 parents 3525f46 + 7e13124 commit 2b92a34
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@ All installed! You can now use `gen-ir` on your system - be sure to run `gen-ir
```bash
# Path to build log (you can export from inside of Xcode too)
xcodebuild clean && \
xcodebuild build -project TestProject.xcodeproj -scheme TestProject -configuration Debug -destination generic/platform=iOS -archivePath TestProject.xcarchive > build_log.txt
xcodebuild archive -project TestProject.xcodeproj -scheme TestProject -configuration Debug -destination generic/platform=iOS -archivePath TestProject.xcarchive > build_log.txt

gen-ir build_log.txt TestProject.xcarchive --project-path TestProject.xcodeproj
gen-ir build_log.txt TestProject.xcarchive

# Stdin (you may need to redirect stderr to stdout here, Xcode is weird about writing to it sometimes)
xcodebuild clean && \
xcodebuild build -project TestProject.xcodeproj -scheme TestProject -configuration Debug -destination generic/platform=iOS -archivePath TestProject.xcarchive | gen-ir - TestProject.xcarchive --project-path TestProject.xcodeproj
xcodebuild archive -project TestProject.xcodeproj -scheme TestProject -configuration Debug -destination generic/platform=iOS -archivePath TestProject.xcarchive | gen-ir - TestProject.xcarchive
```

## Building
Expand All @@ -86,6 +86,6 @@ swift build -c release
If you previously installed the test version during early access testing, run the following commands to remove the test version from your system before installing:

```sh
brew uninstall gen-ir &&
brew untap NinjaLikesCheez/tap
```
brew uninstall gen-ir &&
brew untap NinjaLikesCheez/tap
```
2 changes: 1 addition & 1 deletion Sources/GenIR/Versions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
import Foundation

enum Versions {
static let version = "0.5.0-beta"
static let version = "0.5.0"
}

0 comments on commit 2b92a34

Please sign in to comment.