Skip to content

Commit c18db3d

Browse files
Sean HenrySean Henry
Sean Henry
authored and
Sean Henry
committed
Bumps version and resigns app
1 parent f498bce commit c18db3d

File tree

4 files changed

+31
-18
lines changed

4 files changed

+31
-18
lines changed

MockGenerator.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1316,7 +1316,7 @@
13161316
PRODUCT_BUNDLE_IDENTIFIER = codes.seanhenry.MockGeneratorApp;
13171317
PRODUCT_MODULE_NAME = MockGeneratorApp;
13181318
PRODUCT_NAME = "Swift Mock Generator for Xcode";
1319-
PROVISIONING_PROFILE_SPECIFIER = "Mock Generator Developer ID";
1319+
PROVISIONING_PROFILE_SPECIFIER = "Mock Generator Dev ID";
13201320
};
13211321
name = Release;
13221322
};
@@ -1372,7 +1372,7 @@
13721372
);
13731373
PRODUCT_BUNDLE_IDENTIFIER = codes.seanhenry.MockGeneratorApp.XcodePlugin;
13741374
PRODUCT_NAME = "Mock Generator";
1375-
PROVISIONING_PROFILE_SPECIFIER = "Mock Generator Extension Developer ID";
1375+
PROVISIONING_PROFILE_SPECIFIER = "Mock Generator Extension Dev ID";
13761376
SKIP_INSTALL = YES;
13771377
};
13781378
name = Release;

config/Shared.xcconfig

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
SWIFT_VERSION = 5.0
22
MARKETING_VERSION = 0.28
3-
CURRENT_PROJECT_VERSION = 3
4-
BUILD_NUMBER = 64
3+
CURRENT_PROJECT_VERSION = 4
4+
BUILD_NUMBER = 65
55
MACOSX_DEPLOYMENT_TARGET = 11.0
66
CLANG_ENABLE_MODULES = YES
77
ENABLE_STRICT_OBJC_MSGSEND = YES

fastlane/Gymfile

+7
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,10 @@ output_name('Swift Mock Generator for Xcode')
44
configuration('Release')
55
export_method('developer-id')
66
derived_data_path('/tmp/fastlaneBuild')
7+
export_options({
8+
method: "developer-id",
9+
provisioningProfiles: {
10+
"codes.seanhenry.MockGeneratorApp": "Mock Generator Dev ID",
11+
"codes.seanhenry.MockGeneratorApp.XcodePlugin": "Mock Generator Extension Dev ID",
12+
},
13+
})

fastlane/README.md

+20-14
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,40 @@
11
fastlane documentation
2-
================
2+
----
3+
34
# Installation
45

56
Make sure you have the latest version of the Xcode command line tools installed:
67

7-
```
8+
```sh
89
xcode-select --install
910
```
1011

11-
Install _fastlane_ using
12-
```
13-
[sudo] gem install fastlane -NV
14-
```
15-
or alternatively using `brew cask install fastlane`
12+
For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane)
1613

1714
# Available Actions
15+
1816
## Mac
17+
1918
### mac release
19+
20+
```sh
21+
[bundle exec] fastlane mac release
2022
```
21-
fastlane mac release
22-
```
23+
2324
Create a release build.
25+
2426
### mac notarize_bundle
27+
28+
```sh
29+
[bundle exec] fastlane mac notarize_bundle
2530
```
26-
fastlane mac notarize_bundle
27-
```
31+
2832
Notarize the app bundle
2933

3034
----
3135

32-
This README.md is auto-generated and will be re-generated every time [fastlane](https://fastlane.tools) is run.
33-
More information about fastlane can be found on [fastlane.tools](https://fastlane.tools).
34-
The documentation of fastlane can be found on [docs.fastlane.tools](https://docs.fastlane.tools).
36+
This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run.
37+
38+
More information about _fastlane_ can be found on [fastlane.tools](https://fastlane.tools).
39+
40+
The documentation of _fastlane_ can be found on [docs.fastlane.tools](https://docs.fastlane.tools).

0 commit comments

Comments
 (0)