Skip to content

Commit 937bac8

Browse files
committed
Patch v1.1.1
1 parent c1822b9 commit 937bac8

3 files changed

Lines changed: 12 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [1.1.1] (2025-02-16)
2+
3+
#### Bug Fixes
4+
5+
- Fixed a bug regarding warning about module initialization on main thread. ([#35](https://github.com/xerdnu/react-native-blasted-image/issues/35))
6+
17
## [1.1.0] (2025-01-31)
28

39
#### 🚨 Breaking Changes (Android Only)
@@ -256,6 +262,7 @@ dependencies {
256262

257263
- Initial release.
258264

265+
[1.1.1]: https://github.com/xerdnu/react-native-blasted-image/compare/v1.1.0...v1.1.1
259266
[1.1.0]: https://github.com/xerdnu/react-native-blasted-image/compare/v1.0.9...v1.1.0
260267
[1.0.9]: https://github.com/xerdnu/react-native-blasted-image/compare/v1.0.8...v1.0.9
261268
[1.0.8]: https://github.com/xerdnu/react-native-blasted-image/compare/v1.0.7...v1.0.8

ios/BlastedImageModule.m

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@ - (instancetype)init {
4141
];
4242
}
4343

44+
+ (BOOL)requiresMainQueueSetup {
45+
return NO;
46+
}
47+
4448
- (void)startObserving {
4549
hasListeners = YES;
4650
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-blasted-image",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "A simple yet powerful image component for React Native, powered by Glide and SDWebImage",
55
"main": "index.js",
66
"types": "index.d.ts",

0 commit comments

Comments
 (0)