From 4a87a7a83898091f6c4521f895cbb1949a9dd39d Mon Sep 17 00:00:00 2001 From: OSBotify <76178356+OSBotify@users.noreply.github.com> Date: Tue, 9 Apr 2024 18:04:41 +1000 Subject: [PATCH 1/3] Update version to 0.1.43 (#275) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0bb95664..226abd6b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@expensify/react-native-live-markdown", - "version": "0.1.42", + "version": "0.1.43", "description": "Drop-in replacement for React Native's TextInput component with Markdown formatting.", "main": "lib/commonjs/index", "module": "lib/module/index", From c01b607f87ea6d7ad4d214e06b3dd2a84726ce8b Mon Sep 17 00:00:00 2001 From: Jakub Piasecki Date: Tue, 9 Apr 2024 12:02:01 +0200 Subject: [PATCH 2/3] Simplify podspec by removing logic around `install_modules_dependencies` (#276) --- RNLiveMarkdown.podspec | 24 +----------------------- example/ios/Podfile.lock | 4 ++-- 2 files changed, 3 insertions(+), 25 deletions(-) diff --git a/RNLiveMarkdown.podspec b/RNLiveMarkdown.podspec index 56ed5a1a..b2dbe1d9 100644 --- a/RNLiveMarkdown.podspec +++ b/RNLiveMarkdown.podspec @@ -18,27 +18,5 @@ Pod::Spec.new do |s| s.resources = "parser/react-native-live-markdown-parser.js" - # Use install_modules_dependencies helper to install the dependencies if React Native version >=0.71.0. - # See https://github.com/facebook/react-native/blob/febf6b7f33fdb4904669f99d795eba4c0f95d7bf/scripts/cocoapods/new_architecture.rb#L79. - if respond_to?(:install_modules_dependencies, true) - install_modules_dependencies(s) - else - s.dependency "React-Core" - - # Don't install the dependencies when we run `pod install` in the old architecture. - if ENV['RCT_NEW_ARCH_ENABLED'] == '1' then - s.compiler_flags = folly_compiler_flags + " -DRCT_NEW_ARCH_ENABLED=1" - s.pod_target_xcconfig = { - "HEADER_SEARCH_PATHS" => "\"$(PODS_ROOT)/boost\"", - "OTHER_CPLUSPLUSFLAGS" => "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1", - "CLANG_CXX_LANGUAGE_STANDARD" => "c++17" - } - s.dependency "React-RCTFabric" - s.dependency "React-Codegen" - s.dependency "RCT-Folly" - s.dependency "RCTRequired" - s.dependency "RCTTypeSafety" - s.dependency "ReactCommon/turbomodule/core" - end - end + install_modules_dependencies(s) end diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock index 65a22cd5..0b14a8f6 100644 --- a/example/ios/Podfile.lock +++ b/example/ios/Podfile.lock @@ -1111,7 +1111,7 @@ PODS: - React-jsi (= 0.73.4) - React-logger (= 0.73.4) - React-perflogger (= 0.73.4) - - RNLiveMarkdown (0.1.41): + - RNLiveMarkdown (0.1.43): - glog - RCT-Folly (= 2022.05.16.00) - React-Core @@ -1371,7 +1371,7 @@ SPEC CHECKSUMS: React-runtimescheduler: ed48e5faac6751e66ee1261c4bd01643b436f112 React-utils: 6e5ad394416482ae21831050928ae27348f83487 ReactCommon: 840a955d37b7f3358554d819446bffcf624b2522 - RNLiveMarkdown: 558a058fa7b3f62041711448ba99aa1ff406e935 + RNLiveMarkdown: a63967738fd835165f740453942c193275d85936 SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17 Yoga: 64cd2a583ead952b0315d5135bf39e053ae9be70 From b79965017af214e2f0e96ce3271d7f624464f6a4 Mon Sep 17 00:00:00 2001 From: OSBotify <76178356+OSBotify@users.noreply.github.com> Date: Tue, 9 Apr 2024 20:03:20 +1000 Subject: [PATCH 3/3] Update version to 0.1.44 (#277) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 226abd6b..d8455fcc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@expensify/react-native-live-markdown", - "version": "0.1.43", + "version": "0.1.44", "description": "Drop-in replacement for React Native's TextInput component with Markdown formatting.", "main": "lib/commonjs/index", "module": "lib/module/index",