Skip to content

Commit 5860be4

Browse files
authored
release(Worklets): 0.8.2 (#9337)
1 parent a01286f commit 5860be4

6 files changed

Lines changed: 42 additions & 34 deletions

File tree

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

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
name: npm worklets 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-worklets/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-worklets",
3-
"version": "0.8.1",
3+
"version": "0.8.2",
44
"description": "The React Native multithreading library",
55
"keywords": [
66
"react-native",

packages/react-native-worklets/src/debug/jsVersion.ts

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

0 commit comments

Comments
 (0)