Skip to content

Commit 4365d34

Browse files
committed
chore: prepare for stable release of 6.x
1 parent dfeec34 commit 4365d34

File tree

15 files changed

+20
-21
lines changed

15 files changed

+20
-21
lines changed

lerna.json

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
"allowBranch": "main",
1212
"conventionalCommits": true,
1313
"createRelease": "github",
14-
"distTag": "next",
1514
"message": "chore: publish",
1615
"ignoreChanges": [
1716
"**/__fixtures__/**",

packages/bottom-tabs/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
Bottom tab navigator for React Navigation following iOS design guidelines.
44

5-
Installation instructions and documentation can be found on the [React Navigation website](https://reactnavigation.org/docs/6.x/bottom-tab-navigator/).
5+
Installation instructions and documentation can be found on the [React Navigation website](https://reactnavigation.org/docs/bottom-tab-navigator/).

packages/bottom-tabs/src/navigators/createBottomTabNavigator.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ function BottomTabNavigator({
7878
defaultScreenOptions,
7979
null,
8080
2
81-
)}\n\nSee https://reactnavigation.org/docs/6.x/bottom-tab-navigator#options for more details.`
81+
)}\n\nSee https://reactnavigation.org/docs/bottom-tab-navigator#options for more details.`
8282
);
8383
}
8484

@@ -87,7 +87,7 @@ function BottomTabNavigator({
8787

8888
warnOnce(
8989
true,
90-
`Bottom Tab Navigator: 'lazy' in props is deprecated. Move it to 'screenOptions' instead.\n\nSee https://reactnavigation.org/docs/6.x/bottom-tab-navigator/#lazy for more details.`
90+
`Bottom Tab Navigator: 'lazy' in props is deprecated. Move it to 'screenOptions' instead.\n\nSee https://reactnavigation.org/docs/bottom-tab-navigator/#lazy for more details.`
9191
);
9292
}
9393

packages/devtools/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
Developer tools for React Navigation.
44

5-
Installation instructions and documentation can be found on the [React Navigation website](https://reactnavigation.org/docs/6.x/devtools).
5+
Installation instructions and documentation can be found on the [React Navigation website](https://reactnavigation.org/docs/devtools).

packages/drawer/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
Drawer navigator for React Navigation following Material Design guidelines.
44

5-
Installation instructions and documentation can be found on the [React Navigation website](https://reactnavigation.org/docs/6.x/drawer-navigator/).
5+
Installation instructions and documentation can be found on the [React Navigation website](https://reactnavigation.org/docs/drawer-navigator/).

packages/drawer/src/navigators/createDrawerNavigator.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ function DrawerNavigator({
7272
defaultScreenOptions,
7373
null,
7474
2
75-
)}\n\nSee https://reactnavigation.org/docs/6.x/drawer-navigator#options for more details.`
75+
)}\n\nSee https://reactnavigation.org/docs/drawer-navigator#options for more details.`
7676
);
7777
}
7878

@@ -81,14 +81,14 @@ function DrawerNavigator({
8181

8282
warnOnce(
8383
true,
84-
`Drawer Navigator: 'lazy' in props is deprecated. Move it to 'screenOptions' instead.\n\nSee https://reactnavigation.org/docs/6.x/drawer-navigator/#lazy for more details.`
84+
`Drawer Navigator: 'lazy' in props is deprecated. Move it to 'screenOptions' instead.\n\nSee https://reactnavigation.org/docs/drawer-navigator/#lazy for more details.`
8585
);
8686
}
8787

8888
if (typeof openByDefault === 'boolean') {
8989
warnOnce(
9090
true,
91-
`Drawer Navigator: 'openByDefault' is deprecated. Use 'defaultStatus' and set it to 'open' or 'closed' instead.\n\nSee https://reactnavigation.org/docs/6.x/drawer-navigator/#defaultstatus for more details.`
91+
`Drawer Navigator: 'openByDefault' is deprecated. Use 'defaultStatus' and set it to 'open' or 'closed' instead.\n\nSee https://reactnavigation.org/docs/drawer-navigator/#defaultstatus for more details.`
9292
);
9393
}
9494

packages/elements/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
UI Components for React Navigation.
44

5-
Installation instructions and documentation can be found on the [React Navigation website](https://reactnavigation.org/docs/6.x/elements/).
5+
Installation instructions and documentation can be found on the [React Navigation website](https://reactnavigation.org/docs/elements/).

packages/flipper-plugin-react-navigation/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
Flipper plugin with developer tools for React Navigation.
44

5-
Installation instructions and documentation can be found on the [React Navigation website](https://reactnavigation.org/docs/6.x/devtools).
5+
Installation instructions and documentation can be found on the [React Navigation website](https://reactnavigation.org/docs/devtools).

packages/material-bottom-tabs/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
React Navigation integration for [bottom navigation](https://material.io/components/bottom-navigation) component from [`react-native-paper`](https://callstack.github.io/react-native-paper/bottom-navigation.html).
44

5-
Installation instructions and documentation can be found on the [React Navigation website](https://reactnavigation.org/docs/6.x/material-bottom-tab-navigator/).
5+
Installation instructions and documentation can be found on the [React Navigation website](https://reactnavigation.org/docs/material-bottom-tab-navigator/).

packages/material-top-tabs/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
React Navigation integration for animated tab view component from [`react-native-tab-view`](https://github.com/satya164/react-native-tab-view).
44

5-
Installation instructions and documentation can be found on the [React Navigation website](https://reactnavigation.org/docs/6.x/material-top-tab-navigator/).
5+
Installation instructions and documentation can be found on the [React Navigation website](https://reactnavigation.org/docs/material-top-tab-navigator/).

packages/material-top-tabs/src/navigators/createMaterialTopTabNavigator.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ function MaterialTopTabNavigator({
8686
defaultScreenOptions,
8787
null,
8888
2
89-
)}\n\nSee https://reactnavigation.org/docs/6.x/material-top-tab-navigator#options for more details.`
89+
)}\n\nSee https://reactnavigation.org/docs/material-top-tab-navigator#options for more details.`
9090
);
9191
}
9292

@@ -104,7 +104,7 @@ function MaterialTopTabNavigator({
104104

105105
warnOnce(
106106
true,
107-
`Material Top Tab Navigator: '${propName}' in props is deprecated. Move it to 'screenOptions' instead.\n\nSee https://reactnavigation.org/docs/6.x/material-top-tab-navigator#${propName.toLowerCase()} for more details.`
107+
`Material Top Tab Navigator: '${propName}' in props is deprecated. Move it to 'screenOptions' instead.\n\nSee https://reactnavigation.org/docs/material-top-tab-navigator#${propName.toLowerCase()} for more details.`
108108
);
109109
}
110110
});

packages/native/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
React Native integration for React Navigation.
44

5-
Installation instructions and documentation can be found on the [React Navigation website](https://reactnavigation.org/docs/6.x/getting-started/).
5+
Installation instructions and documentation can be found on the [React Navigation website](https://reactnavigation.org/docs/getting-started/).

packages/routers/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ yarn add @react-navigation/routers
1414

1515
## Usage
1616

17-
Documentation can be found on the [React Navigation website](https://reactnavigation.org/docs/6.x/custom-routers/).
17+
Documentation can be found on the [React Navigation website](https://reactnavigation.org/docs/custom-routers/).

packages/stack/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
Stack navigator for React Navigation.
44

5-
Installation instructions and documentation can be found on the [React Navigation website](https://reactnavigation.org/docs/6.x/stack-navigator/).
5+
Installation instructions and documentation can be found on the [React Navigation website](https://reactnavigation.org/docs/stack-navigator/).

packages/stack/src/navigators/createStackNavigator.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,17 @@ function StackNavigator({
4545

4646
warnOnce(
4747
mode != null,
48-
`Stack Navigator: 'mode="${mode}"' is deprecated. Use 'presentation: "${mode}"' in 'screenOptions' instead.\n\nSee https://reactnavigation.org/docs/6.x/stack-navigator#presentation for more details.`
48+
`Stack Navigator: 'mode="${mode}"' is deprecated. Use 'presentation: "${mode}"' in 'screenOptions' instead.\n\nSee https://reactnavigation.org/docs/stack-navigator#presentation for more details.`
4949
);
5050

5151
warnOnce(
5252
headerMode === 'none',
53-
`Stack Navigator: 'headerMode="none"' is deprecated. Use 'headerShown: false' in 'screenOptions' instead.\n\nSee https://reactnavigation.org/docs/6.x/stack-navigator/#headershown for more details.`
53+
`Stack Navigator: 'headerMode="none"' is deprecated. Use 'headerShown: false' in 'screenOptions' instead.\n\nSee https://reactnavigation.org/docs/stack-navigator/#headershown for more details.`
5454
);
5555

5656
warnOnce(
5757
headerMode != null && headerMode !== 'none',
58-
`Stack Navigator: 'headerMode' is moved to 'options'. Moved it to 'screenOptions' to keep current behavior.\n\nSee https://reactnavigation.org/docs/6.x/stack-navigator/#headermode for more details.`
58+
`Stack Navigator: 'headerMode' is moved to 'options'. Moved it to 'screenOptions' to keep current behavior.\n\nSee https://reactnavigation.org/docs/stack-navigator/#headermode for more details.`
5959
);
6060

6161
const { state, descriptors, navigation, NavigationContent } =

0 commit comments

Comments
 (0)