diff --git a/.changeset/bright-windows-sip.md b/.changeset/bright-windows-sip.md deleted file mode 100644 index 8108d18..0000000 --- a/.changeset/bright-windows-sip.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"react-native-bottom-tabs": patch ---- - -fix: apply typeface and size individually in android text appearance. diff --git a/.changeset/fancy-papayas-battle.md b/.changeset/fancy-papayas-battle.md deleted file mode 100644 index 9211fcc..0000000 --- a/.changeset/fancy-papayas-battle.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'react-native-bottom-tabs': patch ---- - -fix: adjust default font size on iOS diff --git a/.changeset/khaki-maps-lay.md b/.changeset/khaki-maps-lay.md deleted file mode 100644 index bb4b9d7..0000000 --- a/.changeset/khaki-maps-lay.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'react-native-bottom-tabs': minor ---- - -fix: adjust the behavior of empty string for badge prop diff --git a/.changeset/public-foxes-cheer.md b/.changeset/public-foxes-cheer.md deleted file mode 100644 index 9a4be2a..0000000 --- a/.changeset/public-foxes-cheer.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'react-native-bottom-tabs': minor -'@bottom-tabs/react-navigation': minor ---- - -feat: add ios tab roles diff --git a/.changeset/ready-paths-train.md b/.changeset/ready-paths-train.md deleted file mode 100644 index 3e7de55..0000000 --- a/.changeset/ready-paths-train.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'react-native-bottom-tabs': patch ---- - -feat: implement iOS 26 minimizeBehavior feature diff --git a/packages/expo-template/CHANGELOG.md b/packages/expo-template/CHANGELOG.md index 35161c8..aa9c38c 100644 --- a/packages/expo-template/CHANGELOG.md +++ b/packages/expo-template/CHANGELOG.md @@ -1,5 +1,13 @@ # @bottom-tabs/expo-template +## 0.0.14 + +### Patch Changes + +- Updated dependencies [[`44dd50d`](https://github.com/callstackincubator/react-native-bottom-tabs/commit/44dd50d3467a8a6bbec78ba9ff11bdd1cf0b55d1), [`51c281d`](https://github.com/callstackincubator/react-native-bottom-tabs/commit/51c281d0447c1388ff24417692c1f8c2d5861730), [`e9b06e7`](https://github.com/callstackincubator/react-native-bottom-tabs/commit/e9b06e784314ca8f71376c0a247c6cba83ec1597), [`993b1aa`](https://github.com/callstackincubator/react-native-bottom-tabs/commit/993b1aa53a6661a927856f1d3a6d808a846f0c1e), [`89b6a5b`](https://github.com/callstackincubator/react-native-bottom-tabs/commit/89b6a5b67b3acde71aa8e44d24b2dfe296ded8bf)]: + - react-native-bottom-tabs@0.10.0 + - @bottom-tabs/react-navigation@0.10.0 + ## 0.0.13 ### Patch Changes diff --git a/packages/expo-template/package.json b/packages/expo-template/package.json index b22aae8..c22987b 100644 --- a/packages/expo-template/package.json +++ b/packages/expo-template/package.json @@ -1,7 +1,7 @@ { "name": "@bottom-tabs/expo-template", "main": "expo-router/entry", - "version": "0.0.13", + "version": "0.0.14", "scripts": { "start": "expo start", "reset-project": "node ./scripts/reset-project.js", @@ -18,7 +18,7 @@ "preset": "jest-expo" }, "dependencies": { - "@bottom-tabs/react-navigation": "0.9.2", + "@bottom-tabs/react-navigation": "0.10.0", "@expo/vector-icons": "^14.0.2", "@react-navigation/native": "^7.0.14", "expo": "~52.0.11", @@ -37,7 +37,7 @@ "react": "18.3.1", "react-dom": "18.3.1", "react-native": "0.76.3", - "react-native-bottom-tabs": "0.9.2", + "react-native-bottom-tabs": "0.10.0", "react-native-gesture-handler": "~2.20.2", "react-native-reanimated": "~3.16.1", "react-native-safe-area-context": "4.12.0", diff --git a/packages/react-native-bottom-tabs/CHANGELOG.md b/packages/react-native-bottom-tabs/CHANGELOG.md index 520bbc2..6c0546c 100644 --- a/packages/react-native-bottom-tabs/CHANGELOG.md +++ b/packages/react-native-bottom-tabs/CHANGELOG.md @@ -1,5 +1,21 @@ # react-native-bottom-tabs +## 0.10.0 + +### Minor Changes + +- [#378](https://github.com/callstackincubator/react-native-bottom-tabs/pull/378) [`e9b06e7`](https://github.com/callstackincubator/react-native-bottom-tabs/commit/e9b06e784314ca8f71376c0a247c6cba83ec1597) Thanks [@okwasniewski](https://github.com/okwasniewski)! - fix: adjust the behavior of empty string for badge prop + +- [#390](https://github.com/callstackincubator/react-native-bottom-tabs/pull/390) [`993b1aa`](https://github.com/callstackincubator/react-native-bottom-tabs/commit/993b1aa53a6661a927856f1d3a6d808a846f0c1e) Thanks [@okwasniewski](https://github.com/okwasniewski)! - feat: add ios tab roles + +### Patch Changes + +- [#393](https://github.com/callstackincubator/react-native-bottom-tabs/pull/393) [`44dd50d`](https://github.com/callstackincubator/react-native-bottom-tabs/commit/44dd50d3467a8a6bbec78ba9ff11bdd1cf0b55d1) Thanks [@joarkosberg](https://github.com/joarkosberg)! - fix: apply typeface and size individually in android text appearance. + +- [#379](https://github.com/callstackincubator/react-native-bottom-tabs/pull/379) [`51c281d`](https://github.com/callstackincubator/react-native-bottom-tabs/commit/51c281d0447c1388ff24417692c1f8c2d5861730) Thanks [@okwasniewski](https://github.com/okwasniewski)! - fix: adjust default font size on iOS + +- [#367](https://github.com/callstackincubator/react-native-bottom-tabs/pull/367) [`89b6a5b`](https://github.com/callstackincubator/react-native-bottom-tabs/commit/89b6a5b67b3acde71aa8e44d24b2dfe296ded8bf) Thanks [@okwasniewski](https://github.com/okwasniewski)! - feat: implement iOS 26 minimizeBehavior feature + ## 0.9.2 ### Patch Changes diff --git a/packages/react-native-bottom-tabs/package.json b/packages/react-native-bottom-tabs/package.json index b9c07ee..94bc487 100644 --- a/packages/react-native-bottom-tabs/package.json +++ b/packages/react-native-bottom-tabs/package.json @@ -1,6 +1,6 @@ { "name": "react-native-bottom-tabs", - "version": "0.9.2", + "version": "0.10.0", "description": "Native Bottom Tabs for React Native", "source": "./src/index.tsx", "main": "./lib/commonjs/index.js", diff --git a/packages/react-navigation/CHANGELOG.md b/packages/react-navigation/CHANGELOG.md index 52a9967..d7ce069 100644 --- a/packages/react-navigation/CHANGELOG.md +++ b/packages/react-navigation/CHANGELOG.md @@ -1,5 +1,11 @@ # @bottom-tabs/react-navigation +## 0.10.0 + +### Minor Changes + +- [#390](https://github.com/callstackincubator/react-native-bottom-tabs/pull/390) [`993b1aa`](https://github.com/callstackincubator/react-native-bottom-tabs/commit/993b1aa53a6661a927856f1d3a6d808a846f0c1e) Thanks [@okwasniewski](https://github.com/okwasniewski)! - feat: add ios tab roles + ## 0.9.2 ## 0.9.1 diff --git a/packages/react-navigation/package.json b/packages/react-navigation/package.json index 10e5dd3..f45031c 100644 --- a/packages/react-navigation/package.json +++ b/packages/react-navigation/package.json @@ -1,6 +1,6 @@ { "name": "@bottom-tabs/react-navigation", - "version": "0.9.2", + "version": "0.10.0", "description": "React Native Bottom Tabs React Navigation integration", "source": "./src/index.tsx", "main": "./lib/commonjs/index.js", diff --git a/yarn.lock b/yarn.lock index 5bc8c80..0c36e43 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1624,7 +1624,7 @@ __metadata: resolution: "@bottom-tabs/expo-template@workspace:packages/expo-template" dependencies: "@babel/core": "npm:^7.25.2" - "@bottom-tabs/react-navigation": "npm:0.9.2" + "@bottom-tabs/react-navigation": "npm:0.10.0" "@expo/vector-icons": "npm:^14.0.2" "@react-navigation/native": "npm:^7.0.14" "@types/jest": "npm:^29.5.12" @@ -1648,7 +1648,7 @@ __metadata: react: "npm:18.3.1" react-dom: "npm:18.3.1" react-native: "npm:0.76.3" - react-native-bottom-tabs: "npm:0.9.2" + react-native-bottom-tabs: "npm:0.10.0" react-native-gesture-handler: "npm:~2.20.2" react-native-reanimated: "npm:~3.16.1" react-native-safe-area-context: "npm:4.12.0" @@ -1679,7 +1679,7 @@ __metadata: languageName: unknown linkType: soft -"@bottom-tabs/react-navigation@npm:*, @bottom-tabs/react-navigation@npm:0.9.2, @bottom-tabs/react-navigation@workspace:packages/react-navigation": +"@bottom-tabs/react-navigation@npm:*, @bottom-tabs/react-navigation@npm:0.10.0, @bottom-tabs/react-navigation@workspace:packages/react-navigation": version: 0.0.0-use.local resolution: "@bottom-tabs/react-navigation@workspace:packages/react-navigation" dependencies: @@ -15558,7 +15558,7 @@ __metadata: languageName: unknown linkType: soft -"react-native-bottom-tabs@npm:*, react-native-bottom-tabs@npm:0.9.2, react-native-bottom-tabs@workspace:packages/react-native-bottom-tabs": +"react-native-bottom-tabs@npm:*, react-native-bottom-tabs@npm:0.10.0, react-native-bottom-tabs@workspace:packages/react-native-bottom-tabs": version: 0.0.0-use.local resolution: "react-native-bottom-tabs@workspace:packages/react-native-bottom-tabs" dependencies: