Skip to content

Commit b33224d

Browse files
authored
chore: bump brownfield-gradle-plugin to v1.0.0 (#243)
* chore: bump brownfield-gradle-plugin to v1.0.0 * docs: update PUBLISHING
1 parent 828bda3 commit b33224d

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

apps/ExpoApp/scripts/prepare-android-build-gradle-for-ci.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { fileURLToPath } from 'node:url';
44

55
const __filename = fileURLToPath(import.meta.url);
66
const __dirname = path.dirname(__filename);
7-
const SNAPSHOT_VERSION = '0.7.3-SNAPSHOT';
7+
const SNAPSHOT_VERSION = '1.0.0-SNAPSHOT';
88
const targetPath = path.resolve(__dirname, '..', 'android', 'build.gradle');
99

1010
function ensureMavenLocalInBuildscriptRepositories(contents: string): string {

apps/RNApp/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ buildscript {
1616
classpath("com.android.tools.build:gradle")
1717
classpath("com.facebook.react:react-native-gradle-plugin")
1818
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
19-
classpath("com.callstack.react:brownfield-gradle-plugin:0.7.3-SNAPSHOT")
19+
classpath("com.callstack.react:brownfield-gradle-plugin:1.0.0-SNAPSHOT")
2020
}
2121
}
2222

gradle-plugins/react/PUBLISHING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ signing.secretKeyRingFile=<path-to-gpg-file>
2424
Once the signing key is set up correctly, run the following command:
2525

2626
```sh
27-
yarn brownfield:plugin:publish:local
27+
yarn brownfield:plugin:publish:local:signed
2828
```
2929

3030
### 3. Output

gradle-plugins/react/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ buildscript {
2020
classpath("com.android.tools.build:gradle")
2121
classpath("com.facebook.react:react-native-gradle-plugin")
2222
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
23-
+ classpath("com.callstack.react:brownfield-gradle-plugin:0.7.3")
23+
+ classpath("com.callstack.react:brownfield-gradle-plugin:1.0.0")
2424
}
2525
}
2626
```
@@ -59,7 +59,7 @@ buildscript {
5959
classpath("com.android.tools.build:gradle")
6060
classpath("com.facebook.react:react-native-gradle-plugin")
6161
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
62-
+ classpath("com.callstack.react:brownfield-gradle-plugin:0.7.3")
62+
+ classpath("com.callstack.react:brownfield-gradle-plugin:1.0.0-SNAPSHOT")
6363
}
6464
}
6565
```

gradle-plugins/react/brownfield/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PROJECT_ID=com.callstack.react.brownfield
22
ARTIFACT_ID=brownfield-gradle-plugin
3-
VERSION=0.7.3
3+
VERSION=1.0.0
44
GROUP=com.callstack.react
55
IMPLEMENTATION_CLASS=com.callstack.react.brownfield.plugin.RNBrownfieldPlugin
66

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
export const BROWNFIELD_PLUGIN_VERSION = '0.7.3';
1+
export const BROWNFIELD_PLUGIN_VERSION = '1.0.0';
22
export const brownfieldGradlePluginDependency = `classpath("com.callstack.react:brownfield-gradle-plugin:${BROWNFIELD_PLUGIN_VERSION}")`;

0 commit comments

Comments
 (0)