Skip to content

Commit c815de5

Browse files
tjzeljeanregisser
andauthored
release: 3.15.5 (#6592)
## Summary Picking: - #6590 ## Note I picked GitHub Actions from main to this branch from main so CIs would actually run on this pull request. Some of them are expected to fail (like cpp linting), since they got changed but these changes weren't picked into this branch. --------- Co-authored-by: Jean Regisser <[email protected]>
1 parent b0def9b commit c815de5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

packages/react-native-reanimated/Common/cpp/reanimated/NativeModules/NativeReanimatedModule.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,15 @@
3434

3535
// Standard `__cplusplus` macro reference:
3636
// https://en.cppreference.com/w/cpp/preprocessor/replace#Predefined_macros
37-
#if REACT_NATIVE_MINOR_VERSION >= 75 || __cplusplus >= 20202L
37+
#if REACT_NATIVE_MINOR_VERSION >= 75 || __cplusplus >= 202002L
3838
// Implicit copy capture of `this` is deprecated in NDK27, which uses C++20.
3939
#define COPY_CAPTURE_WITH_THIS [ =, this ] // NOLINT (whitespace/braces)
4040
#else
4141
// React Native 0.75 is the last one which allows NDK23. NDK23 uses C++17 and
4242
// explicitly disallows C++20 features, including the syntax above. Therefore we
4343
// fallback to the deprecated syntax here.
4444
#define COPY_CAPTURE_WITH_THIS [=] // NOLINT (whitespace/braces)
45-
#endif // REACT_NATIVE_MINOR_VERSION >= 75 || __cplusplus >= 20202L
45+
#endif // REACT_NATIVE_MINOR_VERSION >= 75 || __cplusplus >= 202002L
4646

4747
using namespace facebook;
4848

packages/react-native-reanimated/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-reanimated",
3-
"version": "3.15.4",
3+
"version": "3.15.5",
44
"description": "More powerful alternative to Animated library for React Native.",
55
"scripts": {
66
"test": "jest",

packages/react-native-reanimated/src/platform-specific/jsVersion.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
* with the version used to build the native part of the library in runtime.
55
* Remember to keep this in sync with the version declared in `package.json`
66
*/
7-
export const jsVersion = '3.15.4';
7+
export const jsVersion = '3.15.5';

0 commit comments

Comments
 (0)