Skip to content

Commit 2b29211

Browse files
authored
Merge pull request #10 from MFB-Technologies-Inc/release/v1.3.0
Release/v1.3.0
2 parents d88239a + 428b218 commit 2b29211

7 files changed

+42
-10
lines changed

CHANGELOG.json

+21
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,27 @@
11
{
22
"name": "@mfbtech/react-async-renderer",
33
"entries": [
4+
{
5+
"version": "1.3.0",
6+
"tag": "@mfbtech/react-async-renderer_v1.3.0",
7+
"date": "Fri, 12 Aug 2022 09:12:00 GMT",
8+
"comments": {
9+
"minor": [
10+
{
11+
"comment": "Fixed the publish action"
12+
},
13+
{
14+
"comment": "Added an example application"
15+
},
16+
{
17+
"comment": "Remove contributing document and added the license to the readme"
18+
},
19+
{
20+
"comment": "Restrict the files that are published"
21+
}
22+
]
23+
}
24+
},
425
{
526
"version": "1.2.1",
627
"tag": "@mfbtech/react-async-renderer_v1.2.1",

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
This log was last generated on Wed, 16 Mar 2022 01:48:17 GMT and should not be manually modified.
44

5+
## 1.3.0
6+
Fri, 12 Aug 2022 09:12:00 GMT
7+
8+
### Minor changes
9+
10+
- Fixed the publish action
11+
- Added an example application
12+
- Remove contributing document and added the license to the readme
13+
- Restrict the files that are published
14+
515
## 1.2.1
616
Wed, 16 Mar 2022 01:48:17 GMT
717

example/package-lock.json

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.1.0",
44
"private": true,
55
"dependencies": {
6-
"@mfbtech/react-async-renderer": "file:../packed/mfbtech-react-async-renderer-1.2.1.tgz",
6+
"@mfbtech/react-async-renderer": "file:../packed/mfbtech-react-async-renderer-1.3.0.tgz",
77
"react": "^17.0.2",
88
"react-dom": "^17.0.2",
99
"web-vitals": "^2.1.4"

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mfbtech/react-async-renderer",
3-
"version": "1.2.1",
3+
"version": "1.3.0",
44
"description": "Utilities for rendering JSX with respect to one or more asynchronous operations.",
55
"author": "MFB Technologies, Inc.",
66
"homepage": "https://github.com/MFB-Technologies-Inc/react-async-renderer",

src/components/LoadingSpinner.scss

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ $size: 30px;
66

77
.spinner {
88
position: relative;
9+
// TODO: #9: address build warnings
910
top: calc(50% - math.div(#{$size}, 2));
1011
left: calc(50% - math.div(#{$size}, 2));
1112
width: $size;

0 commit comments

Comments
 (0)