Skip to content

Commit 417659a

Browse files
chore(release): version packages
1 parent dd72e8b commit 417659a

14 files changed

Lines changed: 37 additions & 44 deletions

.changeset/agp9-built-in-kotlin.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/expo-template-android-tab-icons.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/expo-template-development-build.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/expo-template-runnable-checks.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/expo-template-sdk54-dependencies.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/expo-template-test-renderer.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/tidy-tabs-headers.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/expo-template/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# @bottom-tabs/expo-template
22

3+
## 1.1.4
4+
5+
### Patch Changes
6+
7+
- [#576](https://github.com/callstack/react-native-bottom-tabs/pull/576) [`1283040`](https://github.com/callstack/react-native-bottom-tabs/commit/1283040e76ed7621c965108e5d14173bf5274c4c) Thanks [@oleksandrzavarzin-callstack](https://github.com/oleksandrzavarzin-callstack)! - Render tab bar icons on Android, and apply the template's own colors to the tab bar
8+
9+
- [#574](https://github.com/callstack/react-native-bottom-tabs/pull/574) [`67c02ec`](https://github.com/callstack/react-native-bottom-tabs/commit/67c02ec2d7803a3bb6b4ac7da3818c2988da6379) Thanks [@oleksandrzavarzin-callstack](https://github.com/oleksandrzavarzin-callstack)! - Target development builds instead of Expo Go, and add `ios.bundleIdentifier` and `android.package` placeholders
10+
11+
- [#578](https://github.com/callstack/react-native-bottom-tabs/pull/578) [`cc8ce1f`](https://github.com/callstack/react-native-bottom-tabs/commit/cc8ce1f7f5daa631bf08af3bf39e6752d5d0df82) Thanks [@oleksandrzavarzin-callstack](https://github.com/oleksandrzavarzin-callstack)! - Replace react-test-renderer with React Native Testing Library, and add lint and typecheck scripts
12+
13+
- [#577](https://github.com/callstack/react-native-bottom-tabs/pull/577) [`34f7117`](https://github.com/callstack/react-native-bottom-tabs/commit/34f71176e6ac51a143b7cb7c936019f59f14591a) Thanks [@oleksandrzavarzin-callstack](https://github.com/oleksandrzavarzin-callstack)! - Align dependencies with Expo SDK 54, drop unused packages, and fix the template's TypeScript errors
14+
15+
- [#579](https://github.com/callstack/react-native-bottom-tabs/pull/579) [`dd72e8b`](https://github.com/callstack/react-native-bottom-tabs/commit/dd72e8bcc6134dc2db7504dcdd186c2578a474d4) Thanks [@thiagobrez](https://github.com/thiagobrez)! - Add the missing test-renderer dependency required by React Native Testing Library, using the version compatible with React 19.1.
16+
17+
- Updated dependencies [[`251bc1e`](https://github.com/callstack/react-native-bottom-tabs/commit/251bc1e362d0814a742c45cc6fb4f2e3169fea9c), [`6b8e865`](https://github.com/callstack/react-native-bottom-tabs/commit/6b8e865af0b795eeeb11265fa103c818013bcd6e)]:
18+
- react-native-bottom-tabs@1.4.1
19+
- @bottom-tabs/react-navigation@1.4.1
20+
321
## 1.1.3
422

523
### Patch Changes

packages/expo-template/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@bottom-tabs/expo-template",
33
"main": "expo-router/entry",
4-
"version": "1.1.3",
4+
"version": "1.1.4",
55
"scripts": {
66
"start": "expo start --dev-client",
77
"reset-project": "node ./scripts/reset-project.js",
@@ -21,7 +21,7 @@
2121
"preset": "jest-expo"
2222
},
2323
"dependencies": {
24-
"@bottom-tabs/react-navigation": "1.4.0",
24+
"@bottom-tabs/react-navigation": "1.4.1",
2525
"@expo/vector-icons": "^15.0.3",
2626
"@react-navigation/native": "^7.1.8",
2727
"expo": "~54.0.35",
@@ -37,7 +37,7 @@
3737
"react": "19.1.0",
3838
"react-dom": "19.1.0",
3939
"react-native": "0.81.5",
40-
"react-native-bottom-tabs": "1.4.0",
40+
"react-native-bottom-tabs": "1.4.1",
4141
"react-native-gesture-handler": "~2.28.0",
4242
"react-native-reanimated": "~4.1.1",
4343
"react-native-safe-area-context": "~5.6.0",

packages/react-native-bottom-tabs/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# react-native-bottom-tabs
22

3+
## 1.4.1
4+
5+
### Patch Changes
6+
7+
- [#568](https://github.com/callstack/react-native-bottom-tabs/pull/568) [`251bc1e`](https://github.com/callstack/react-native-bottom-tabs/commit/251bc1e362d0814a742c45cc6fb4f2e3169fea9c) Thanks [@gabrieldonadel](https://github.com/gabrieldonadel)! - Fix Android build with AGP 9 built-in Kotlin: skip applying the `kotlin-android` plugin when AGP has already registered the `kotlin` extension
8+
9+
- [#571](https://github.com/callstack/react-native-bottom-tabs/pull/571) [`6b8e865`](https://github.com/callstack/react-native-bottom-tabs/commit/6b8e865af0b795eeeb11265fa103c818013bcd6e) Thanks [@thiagobrez](https://github.com/thiagobrez)! - Add support for React Native 0.87
10+
311
## 1.4.0
412

513
### Minor Changes

0 commit comments

Comments
 (0)