Skip to content

Commit 3a42856

Browse files
committed
chore(release): 4.0.0
1 parent b9c71b9 commit 3a42856

File tree

4 files changed

+17
-6
lines changed

4 files changed

+17
-6
lines changed

.github/workflows/release.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Filestack React deployment
22
on:
33
push:
44
branches: [ develop ]
5-
create:
6-
tags:
7-
- v*
5+
create:
6+
tags:
7+
- v*
88
jobs:
99
build:
1010
runs-on: ubuntu-latest
@@ -14,6 +14,7 @@ jobs:
1414
uses: actions/setup-node@v1
1515
with:
1616
node-version: '14.x'
17+
registry-url: "https://registry.npmjs.org"
1718
- name: Install deps
1819
run: npm install
1920
- name: Bundle packages
@@ -30,7 +31,7 @@ jobs:
3031
AWS_REGION: ${{ secrets.AWS_REGION }}
3132
- name: Publush to NPM (only on tag)
3233
if: startsWith(github.ref, 'refs/tags/') && success()
33-
run: npm publish
34+
run: npm publish --access public
3435
env:
3536
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
3637
- name: Deploy docs

CHANGELOG.md

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

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [4.0.0](https://github.com/filestack/filestack-react/compare/v3.2.0...v4.0.0) (2020-12-16)
6+
7+
8+
### ⚠ BREAKING CHANGES
9+
10+
* **whole project:** We've removed source, file, action props, actionOptions is now called
11+
pickerOptions, we've splitted picker component into 3 different one
12+
13+
* **whole project:** - Remove webpack, reduce bundle size, bump version, rewrite all ([be2a01a](https://github.com/filestack/filestack-react/commit/be2a01a5e79c637d29de261a679752b0a34b3bf3)), closes [#103](https://github.com/filestack/filestack-react/issues/103) [#82](https://github.com/filestack/filestack-react/issues/82) [#77](https://github.com/filestack/filestack-react/issues/77) [#74](https://github.com/filestack/filestack-react/issues/74)
14+
515
### [3.2.1](https://github.com/filestack/filestack-react/compare/v3.2.0...v3.2.1) (2020-07-29)
616

717
## [3.2.0](https://github.com/filestack/filestack-react/compare/v3.1.0...v3.2.0) (2020-07-29)

package-lock.json

+1-1
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": "filestack-react",
3-
"version": "3.2.1",
3+
"version": "4.0.0",
44
"description": "Official React component for Filestack - API and content management system that makes it easy to add powerful file uploading and transformation capabilities to any web or mobile application.",
55
"author": "filestack",
66
"license": "MIT",

0 commit comments

Comments
 (0)