Skip to content

Commit b349631

Browse files
committed
release(Reanimated): 4.3.1
1 parent 177650b commit b349631

6 files changed

Lines changed: 42 additions & 34 deletions

File tree

.github/workflows/npm-reanimated-publish.yml

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
name: npm reanimated publish
2+
permissions:
3+
contents: read
4+
id-token: write
25
on:
36
push:
47
branches:
@@ -18,24 +21,29 @@ on:
1821
workflow_dispatch:
1922
inputs:
2023
publish:
21-
description: 'Whether to publish the package or just do a dry run.'
24+
description: 'Do you want to publish the package? Leave it unchecked to do a dry run without publishing.'
2225
required: false
2326
type: boolean
2427
default: false
2528

29+
release-type:
30+
description: 'Release type'
31+
type: choice
32+
options:
33+
- stable
34+
- nightly
35+
- beta
36+
- rc
37+
required: true
38+
2639
version:
27-
description: 'Version to be published if cannot be inferred automatically, use for stable releases.'
40+
description: 'Version to be published (only for stable releases)'
2841
required: false
2942
type: string
3043
default: ''
3144

32-
release-type:
33-
description: 'Release type to be published (stable, nightly, beta, rc)'
34-
type: string
35-
required: true
36-
3745
npm-tag:
38-
description: 'npm tag to publish under (usually inferred from release type and version)'
46+
description: 'npm tag to publish under (only if different than release type)'
3947
required: false
4048
type: string
4149
default: ''

apps/fabric-example/ios/Podfile.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/macos-example/macos/Podfile.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/tvos-example/ios/Podfile.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/react-native-reanimated/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-reanimated",
3-
"version": "4.3.0",
3+
"version": "4.3.1",
44
"description": "More powerful alternative to Animated library for React Native.",
55
"keywords": [
66
"react-native",

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

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

0 commit comments

Comments
 (0)