Skip to content

Commit 7e13124

Browse files
committed
Update release version to 0.5.0
1 parent 3525f46 commit 7e13124

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,13 @@ All installed! You can now use `gen-ir` on your system - be sure to run `gen-ir
6060
```bash
6161
# Path to build log (you can export from inside of Xcode too)
6262
xcodebuild clean && \
63-
xcodebuild build -project TestProject.xcodeproj -scheme TestProject -configuration Debug -destination generic/platform=iOS -archivePath TestProject.xcarchive > build_log.txt
63+
xcodebuild archive -project TestProject.xcodeproj -scheme TestProject -configuration Debug -destination generic/platform=iOS -archivePath TestProject.xcarchive > build_log.txt
6464

65-
gen-ir build_log.txt TestProject.xcarchive --project-path TestProject.xcodeproj
65+
gen-ir build_log.txt TestProject.xcarchive
6666

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

7272
## Building
@@ -86,6 +86,6 @@ swift build -c release
8686
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:
8787

8888
```sh
89-
brew uninstall gen-ir &&
90-
brew untap NinjaLikesCheez/tap
91-
```
89+
brew uninstall gen-ir &&
90+
brew untap NinjaLikesCheez/tap
91+
```

Sources/GenIR/Versions.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
import Foundation
99

1010
enum Versions {
11-
static let version = "0.5.0-beta"
11+
static let version = "0.5.0"
1212
}

0 commit comments

Comments
 (0)