Skip to content

Commit 0db5cfe

Browse files
authored
chore: release 0.1.6 (#273)
<!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please follow the template so that the reviewers can easily understand what the code changes affect --> # Summary Release 0.1.6. ## Test Plan -- ## Screenshots / Videos -- ## Compatibility | OS | Implemented | | ------- | :---------: | | iOS | ✅ | | Android | ✅ |
1 parent f09dc74 commit 0db5cfe

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,11 +101,11 @@ export default function App() {
101101
<View style={styles.container}>
102102
<EnrichedTextInput
103103
ref={ref}
104-
onChangeState={(e) => setStylesState(e.nativeEvent)}
104+
onChangeState={e => setStylesState(e.nativeEvent)}
105105
style={styles.input}
106106
/>
107107
<Button
108-
title="Toggle bold"
108+
title={stylesState?.isBold ? 'Unbold' : 'Bold'}
109109
color={stylesState?.isBold ? 'green' : 'gray'}
110110
onPress={() => ref.current?.toggleBold()}
111111
/>

example/ios/Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2349,7 +2349,7 @@ PODS:
23492349
- React-perflogger (= 0.82.1)
23502350
- React-utils (= 0.82.1)
23512351
- SocketRocket
2352-
- ReactNativeEnriched (0.1.5):
2352+
- ReactNativeEnriched (0.1.6):
23532353
- boost
23542354
- DoubleConversion
23552355
- fast_float
@@ -2690,7 +2690,7 @@ SPEC CHECKSUMS:
26902690
ReactAppDependencyProvider: cc2795efe30a023c3a505676b9c748b664b9c0a1
26912691
ReactCodegen: 897bad2d2f722ff4dc46fc144f9cc018db0e2ce4
26922692
ReactCommon: c5803af00bd3737dc1631749b1f1da5beba5b049
2693-
ReactNativeEnriched: 9b9a2496bd301eca5df9a5c1ea208033d4d25b55
2693+
ReactNativeEnriched: c96634c617190d2cd94f9a474d68430dfc8d6dc0
26942694
SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748
26952695
Yoga: 689c8e04277f3ad631e60fe2a08e41d411daf8eb
26962696

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-enriched",
3-
"version": "0.1.5",
3+
"version": "0.1.6",
44
"description": "Rich Text Editor component for React Native",
55
"source": "./src/index.tsx",
66
"main": "./lib/module/index.js",

0 commit comments

Comments
 (0)