Skip to content

Commit a71a58e

Browse files
[BUMP] Bump plugin to 0.2.0 (#187)
## πŸ“ Description Bump client, expo-plugin versions and all readmes ## 🎯 Type of Change - [x] πŸ“š Documentation update
1 parent f9c5390 commit a71a58e

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

β€Ž.github/ISSUE_TEMPLATE/bug_report.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ body:
5656
id: rnrepo-version
5757
attributes:
5858
label: RNRepo version (and/or @rnrepo/expo-config-plugin version)
59-
placeholder: "e.g., 0.1.0"
59+
placeholder: "e.g., 0.2.0"
6060
validations:
6161
required: true
6262

β€Ž.github/workflows/build-example-app.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717
description: 'RNRepo prebuilds-plugin version'
1818
required: false
1919
type: string
20-
default: '0.1.0'
20+
default: '0.2.0'
2121
libraries:
2222
description: 'libraries with versions to install, format: libraryName1@version1,libraryName2@version2'
2323
required: true

β€Ž.github/workflows/publish-expo-config-plugin.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ jobs:
4747
run: bun run prepare
4848

4949
- name: πŸš€ Publish to npm
50-
run: npm publish --tag beta
50+
run: npm publish

β€ŽREADME.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ For standard React Native setups or when using Expo but managing your android fo
7272
}
7373
dependencies {
7474
...
75-
+ classpath("org.rnrepo.tools:prebuilds-plugin:0.1.0")
75+
+ classpath("org.rnrepo.tools:prebuilds-plugin:0.2.0")
7676
}
7777
}
7878

β€Žbun.lockβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žpackages/client/rnrepo-plugin/build.gradleβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
group = 'org.rnrepo.tools'
1010

1111
// Fixed version in code - automatically appends -SNAPSHOT for local publishes
12-
def baseVersion = '0.1.1'
12+
def baseVersion = '0.2.0'
1313
def isLocalPublish = project.gradle.startParameter.taskNames.any {
1414
it.contains("MavenLocal")
1515
}

β€Žpackages/expo-config-plugin/package.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@rnrepo/expo-config-plugin",
33
"title": "RNRepo expo config plugin",
4-
"version": "0.1.0-beta.1",
4+
"version": "0.2.0-beta.0",
55
"description": "Plugin for configuring RNRepo prebuilt packages in Expo projects",
66
"sideEffects": false,
77
"main": "build/withRNRepoPlugin.js",

β€Žpackages/expo-config-plugin/src/withRNRepoPlugin.tsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { withProjectBuildGradle, withAppBuildGradle } from '@expo/config-plugins
22
import type { ExpoConfig } from '@expo/config-types';
33

44
const classpathRegex = /(classpath.*)/;
5-
const rnrepoClasspath = 'classpath("org.rnrepo.tools:prebuilds-plugin:0.1.0")';
5+
const rnrepoClasspath = 'classpath("org.rnrepo.tools:prebuilds-plugin:0.2.0")';
66
const mavenCentralRepository = `mavenCentral()`;
77
const mavenRepositoryBlock = `
88
maven { url "https://packages.rnrepo.org/releases" }`;

β€Žpackages/website/src/components/GettingStarted.astroβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ buildscript {
3434
}
3535
dependencies {
3636
...
37-
+ classpath("org.rnrepo.tools:prebuilds-plugin:0.1.0")
37+
+ classpath("org.rnrepo.tools:prebuilds-plugin:0.2.0")
3838
}
3939
4040
allprojects {

0 commit comments

Comments
Β (0)