Skip to content

Commit c59f498

Browse files
chore: release package (#302)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent c278931 commit c59f498

24 files changed

+116
-57
lines changed

.changeset/honest-shirts-guess.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/metal-poets-whisper.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/sharp-mugs-poke.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

examples/bare/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# amaexample
22

3+
## 1.1.0
4+
5+
### Minor Changes
6+
7+
- Added `<Loading />` component example screens ([#272](https://github.com/FormidableLabs/react-native-ama/pull/272))
8+
39
## 0.0.2
410

511
### Patch Changes

examples/bare/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "amaexample",
3-
"version": "1.0.1",
3+
"version": "1.1.0",
44
"private": true,
55
"scripts": {
66
"android": "react-native run-android",

examples/expo/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# ama-expo-example
22

3+
## 1.1.0
4+
5+
### Minor Changes
6+
7+
- Added `<Loading />` component example screens ([#272](https://github.com/FormidableLabs/react-native-ama/pull/272))
8+
39
## 1.0.1
410

511
### Patch Changes

examples/expo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ama-expo-example",
33
"private": true,
4-
"version": "1.0.1",
4+
"version": "1.1.0",
55
"main": "index.js",
66
"scripts": {
77
"start": "expo start",

examples/shared/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# @examples/shared-ui
2+
3+
## 1.1.0
4+
5+
### Minor Changes
6+
7+
- Added `<Loading />` component example screens ([#272](https://github.com/FormidableLabs/react-native-ama/pull/272))

examples/shared/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@examples/shared-ui",
3-
"version": "1.0.1",
3+
"version": "1.1.0",
44
"description": "Example Apps shared UI components",
55
"private": true,
66
"react-native": "index",

packages/animations/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @react-native-ama/animations
22

3+
## 1.2.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`41f83f66c631889b7f61e5a1680609d34aa0efde`](https://github.com/FormidableLabs/react-native-ama/commit/41f83f66c631889b7f61e5a1680609d34aa0efde)]:
8+
- @react-native-ama/core@1.2.0
9+
- @react-native-ama/internal@1.2.0
10+
311
## 1.1.4
412

513
### Patch Changes

packages/animations/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-native-ama/animations",
3-
"version": "1.1.4",
3+
"version": "1.2.0",
44
"react-native": "src/index",
55
"types": "dist/index.d.ts",
66
"main": "dist/index.js",
@@ -22,8 +22,8 @@
2222
"typecheck": "tsc --noEmit"
2323
},
2424
"dependencies": {
25-
"@react-native-ama/core": "~1.1.4",
26-
"@react-native-ama/internal": "~1.1.4"
25+
"@react-native-ama/core": "~1.2.0",
26+
"@react-native-ama/internal": "~1.2.0"
2727
},
2828
"peerDependencies": {
2929
"react": "*",

packages/core/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @react-native-ama/core
22

3+
## 1.2.0
4+
5+
### Patch Changes
6+
7+
- add export for `AutofocusContainerProps` type from `core` package ([#272](https://github.com/FormidableLabs/react-native-ama/pull/272))
8+
9+
- Updated dependencies []:
10+
- @react-native-ama/internal@1.2.0
11+
312
## 1.1.4
413

514
### Patch Changes

packages/core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-native-ama/core",
3-
"version": "1.1.4",
3+
"version": "1.2.0",
44
"description": "Accessible Mobile App Library for React Native",
55
"react-native": "src/index",
66
"types": "dist/src/index.d.ts",
@@ -26,7 +26,7 @@
2626
"postinstall": "node ./src/postinstall.js"
2727
},
2828
"dependencies": {
29-
"@react-native-ama/internal": "~1.1.4"
29+
"@react-native-ama/internal": "~1.2.0"
3030
},
3131
"peerDependencies": {
3232
"react": "*",

packages/extras/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# @react-native-ama/extras
22

3+
## 1.2.0
4+
5+
### Minor Changes
6+
7+
- Added new `<Loading />` component to `extras` package ([#272](https://github.com/FormidableLabs/react-native-ama/pull/272))
8+
9+
### Patch Changes
10+
11+
- Updated dependencies [[`41f83f66c631889b7f61e5a1680609d34aa0efde`](https://github.com/FormidableLabs/react-native-ama/commit/41f83f66c631889b7f61e5a1680609d34aa0efde)]:
12+
- @react-native-ama/core@1.2.0
13+
- @react-native-ama/animations@1.2.0
14+
- @react-native-ama/internal@1.2.0
15+
316
## 1.1.4
417

518
### Patch Changes

packages/extras/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-native-ama/extras",
3-
"version": "1.1.4",
3+
"version": "1.2.0",
44
"react-native": "src/index",
55
"types": "dist/index.d.ts",
66
"main": "dist/index.js",
@@ -22,9 +22,9 @@
2222
"typecheck": "tsc --noEmit"
2323
},
2424
"dependencies": {
25-
"@react-native-ama/animations": "~1.1.4",
26-
"@react-native-ama/core": "~1.1.4",
27-
"@react-native-ama/internal": "~1.1.4"
25+
"@react-native-ama/animations": "~1.2.0",
26+
"@react-native-ama/core": "~1.2.0",
27+
"@react-native-ama/internal": "~1.2.0"
2828
},
2929
"peerDependencies": {
3030
"react": "*",

packages/forms/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @react-native-ama/forms
22

3+
## 1.2.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`41f83f66c631889b7f61e5a1680609d34aa0efde`](https://github.com/FormidableLabs/react-native-ama/commit/41f83f66c631889b7f61e5a1680609d34aa0efde)]:
8+
- @react-native-ama/core@1.2.0
9+
- @react-native-ama/internal@1.2.0
10+
- @react-native-ama/react-native@1.2.0
11+
312
## 1.1.4
413

514
### Patch Changes

packages/forms/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-native-ama/forms",
3-
"version": "1.1.4",
3+
"version": "1.2.0",
44
"react-native": "src/index",
55
"types": "dist/index.d.ts",
66
"main": "dist/index.js",
@@ -23,9 +23,9 @@
2323
"test": "jest"
2424
},
2525
"dependencies": {
26-
"@react-native-ama/core": "~1.1.4",
27-
"@react-native-ama/internal": "~1.1.4",
28-
"@react-native-ama/react-native": "~1.1.4"
26+
"@react-native-ama/core": "~1.2.0",
27+
"@react-native-ama/internal": "~1.2.0",
28+
"@react-native-ama/react-native": "~1.2.0"
2929
},
3030
"peerDependencies": {
3131
"react": "*",

packages/internal/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @react-native-ama/internal
22

3+
## 1.2.0
4+
35
## 1.1.4
46

57
### Patch Changes

packages/internal/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-ama/internal",
3-
"version": "1.1.4",
3+
"version": "1.2.0",
44
"react-native": "src/index",
55
"types": "dist/index.d.ts",
66
"main": "dist/index.js",

packages/lists/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @react-native-ama/lists
22

3+
## 1.2.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`41f83f66c631889b7f61e5a1680609d34aa0efde`](https://github.com/FormidableLabs/react-native-ama/commit/41f83f66c631889b7f61e5a1680609d34aa0efde)]:
8+
- @react-native-ama/core@1.2.0
9+
- @react-native-ama/internal@1.2.0
10+
311
## 1.1.4
412

513
### Patch Changes

packages/lists/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-native-ama/lists",
3-
"version": "1.1.4",
3+
"version": "1.2.0",
44
"react-native": "src/index",
55
"types": "dist/index.d.ts",
66
"main": "dist/index.js",
@@ -22,8 +22,8 @@
2222
"typecheck": "tsc --noEmit"
2323
},
2424
"dependencies": {
25-
"@react-native-ama/core": "~1.1.4",
26-
"@react-native-ama/internal": "~1.1.4"
25+
"@react-native-ama/core": "~1.2.0",
26+
"@react-native-ama/internal": "~1.2.0"
2727
},
2828
"peerDependencies": {
2929
"expo": ">=47.0.0",

packages/react-native/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @react-native-ama/react-native
22

3+
## 1.2.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`41f83f66c631889b7f61e5a1680609d34aa0efde`](https://github.com/FormidableLabs/react-native-ama/commit/41f83f66c631889b7f61e5a1680609d34aa0efde)]:
8+
- @react-native-ama/core@1.2.0
9+
- @react-native-ama/internal@1.2.0
10+
311
## 1.1.4
412

513
### Patch Changes

packages/react-native/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-native-ama/react-native",
3-
"version": "1.1.4",
3+
"version": "1.2.0",
44
"react-native": "src/index",
55
"types": "dist/index.d.ts",
66
"main": "dist/index.js",
@@ -22,8 +22,8 @@
2222
"typecheck": "tsc --noEmit"
2323
},
2424
"dependencies": {
25-
"@react-native-ama/core": "~1.1.4",
26-
"@react-native-ama/internal": "~1.1.4"
25+
"@react-native-ama/core": "~1.2.0",
26+
"@react-native-ama/internal": "~1.2.0"
2727
},
2828
"peerDependencies": {
2929
"react": "*",

yarn.lock

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4162,23 +4162,23 @@ __metadata:
41624162
languageName: node
41634163
linkType: hard
41644164

4165-
"@react-native-ama/animations@workspace:packages/animations, @react-native-ama/animations@~1.1.4":
4165+
"@react-native-ama/animations@workspace:packages/animations, @react-native-ama/animations@~1.2.0":
41664166
version: 0.0.0-use.local
41674167
resolution: "@react-native-ama/animations@workspace:packages/animations"
41684168
dependencies:
4169-
"@react-native-ama/core": ~1.1.4
4170-
"@react-native-ama/internal": ~1.1.4
4169+
"@react-native-ama/core": ~1.2.0
4170+
"@react-native-ama/internal": ~1.2.0
41714171
peerDependencies:
41724172
react: "*"
41734173
react-native: "*"
41744174
languageName: unknown
41754175
linkType: soft
41764176

4177-
"@react-native-ama/core@workspace:packages/core, @react-native-ama/core@~1.1.4":
4177+
"@react-native-ama/core@workspace:packages/core, @react-native-ama/core@~1.2.0":
41784178
version: 0.0.0-use.local
41794179
resolution: "@react-native-ama/core@workspace:packages/core"
41804180
dependencies:
4181-
"@react-native-ama/internal": ~1.1.4
4181+
"@react-native-ama/internal": ~1.2.0
41824182
babel-jest: ^29.7.0
41834183
peerDependencies:
41844184
react: "*"
@@ -4190,9 +4190,9 @@ __metadata:
41904190
version: 0.0.0-use.local
41914191
resolution: "@react-native-ama/extras@workspace:packages/extras"
41924192
dependencies:
4193-
"@react-native-ama/animations": ~1.1.4
4194-
"@react-native-ama/core": ~1.1.4
4195-
"@react-native-ama/internal": ~1.1.4
4193+
"@react-native-ama/animations": ~1.2.0
4194+
"@react-native-ama/core": ~1.2.0
4195+
"@react-native-ama/internal": ~1.2.0
41964196
peerDependencies:
41974197
react: "*"
41984198
react-native: ">=0.62.0"
@@ -4205,17 +4205,17 @@ __metadata:
42054205
version: 0.0.0-use.local
42064206
resolution: "@react-native-ama/forms@workspace:packages/forms"
42074207
dependencies:
4208-
"@react-native-ama/core": ~1.1.4
4209-
"@react-native-ama/internal": ~1.1.4
4210-
"@react-native-ama/react-native": ~1.1.4
4208+
"@react-native-ama/core": ~1.2.0
4209+
"@react-native-ama/internal": ~1.2.0
4210+
"@react-native-ama/react-native": ~1.2.0
42114211
jest-expo: ^49.0.0
42124212
peerDependencies:
42134213
react: "*"
42144214
react-native: "*"
42154215
languageName: unknown
42164216
linkType: soft
42174217

4218-
"@react-native-ama/internal@workspace:packages/internal, @react-native-ama/internal@~1.1.4":
4218+
"@react-native-ama/internal@workspace:packages/internal, @react-native-ama/internal@~1.2.0":
42194219
version: 0.0.0-use.local
42204220
resolution: "@react-native-ama/internal@workspace:packages/internal"
42214221
dependencies:
@@ -4230,8 +4230,8 @@ __metadata:
42304230
version: 0.0.0-use.local
42314231
resolution: "@react-native-ama/lists@workspace:packages/lists"
42324232
dependencies:
4233-
"@react-native-ama/core": ~1.1.4
4234-
"@react-native-ama/internal": ~1.1.4
4233+
"@react-native-ama/core": ~1.2.0
4234+
"@react-native-ama/internal": ~1.2.0
42354235
peerDependencies:
42364236
expo: ">=47.0.0"
42374237
react: "*"
@@ -4263,12 +4263,12 @@ __metadata:
42634263
languageName: unknown
42644264
linkType: soft
42654265

4266-
"@react-native-ama/react-native@workspace:packages/react-native, @react-native-ama/react-native@~1.1.4":
4266+
"@react-native-ama/react-native@workspace:packages/react-native, @react-native-ama/react-native@~1.2.0":
42674267
version: 0.0.0-use.local
42684268
resolution: "@react-native-ama/react-native@workspace:packages/react-native"
42694269
dependencies:
4270-
"@react-native-ama/core": ~1.1.4
4271-
"@react-native-ama/internal": ~1.1.4
4270+
"@react-native-ama/core": ~1.2.0
4271+
"@react-native-ama/internal": ~1.2.0
42724272
peerDependencies:
42734273
react: "*"
42744274
react-native: "*"

0 commit comments

Comments
 (0)