Skip to content

Commit 16418e9

Browse files
committed
chore: bump
1 parent 3ffaa8e commit 16418e9

7 files changed

Lines changed: 12 additions & 7 deletions

File tree

.changeset/open-zoos-walk.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@callstack/react-native-brownfield': patch
3+
---
4+
5+
fix: merge classes to contain third party libs classes

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:2.0.0-alpha05-SNAPSHOT")
19+
classpath("com.callstack.react:brownfield-gradle-plugin:2.0.0-alpha06-SNAPSHOT")
2020
}
2121
}
2222

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ if (!projectDirName) {
99

1010
const __filename = fileURLToPath(import.meta.url);
1111
const __dirname = path.dirname(__filename);
12-
const SNAPSHOT_VERSION = '2.0.0-alpha05-SNAPSHOT';
12+
const SNAPSHOT_VERSION = '2.0.0-alpha06-SNAPSHOT';
1313
const targetPath = path.resolve(
1414
__dirname,
1515
'..',

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=2.0.0-alpha05
3+
VERSION=2.0.0-alpha06
44
GROUP=com.callstack.react
55
IMPLEMENTATION_CLASS=com.callstack.react.brownfield.plugin.RNBrownfieldPlugin
66

packages/react-native-brownfield/src/expo-config-plugin/android/__tests__/gradleHelpers.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ describe('gradleHelpers', () => {
1616
}`;
1717

1818
expect(modifyRootBuildGradle(contents)).toContain(
19-
'classpath("com.callstack.react:brownfield-gradle-plugin:2.0.0-alpha05")'
19+
'classpath("com.callstack.react:brownfield-gradle-plugin:2.0.0-alpha06")'
2020
);
2121
});
2222

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

scripts/__tests__/generate-brownfield-gradle-plugin-release-notes.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ test('supports prerelease versions when finding the previous plugin tag', () =>
2525
const previousTag = findPreviousPluginTag(
2626
[
2727
'brownfield-gradle-plugin/v2.0.0-alpha01',
28-
'brownfield-gradle-plugin/v2.0.0-alpha05',
28+
'brownfield-gradle-plugin/v2.0.0-alpha06',
2929
'brownfield-gradle-plugin/v2.0.0-beta01',
3030
'brownfield-gradle-plugin/v2.0.0',
3131
],
3232
'2.0.0-beta01'
3333
);
3434

35-
assert.equal(previousTag, 'brownfield-gradle-plugin/v2.0.0-alpha05');
35+
assert.equal(previousTag, 'brownfield-gradle-plugin/v2.0.0-alpha06');
3636
});
3737

3838
test('treats a stable release as newer than its prereleases', () => {

0 commit comments

Comments
 (0)