File tree 2 files changed +10
-19
lines changed
packages/circle-react-elements
2 files changed +10
-19
lines changed Original file line number Diff line number Diff line change @@ -17,33 +17,25 @@ This document outlines the steps to prepare and publish a new release of @circle
17
17
## Creating a Release
18
18
19
19
1 . Create a new branch for the release:
20
- ``` bash
21
- git checkout -b release/v[version]
22
- ```
23
20
24
- ### Beta Release
25
-
26
- 1 . Update version in ` package.json ` to include beta tag (e.g., "0.1.0-beta.1")
27
- 2 . Build the package:
28
- ``` bash
29
- yarn build
30
- ```
31
- 3 . Publish with beta tag:
32
21
``` bash
33
- npm publish --tag beta --access public
22
+ git checkout -b release/v[version]
34
23
```
35
24
36
- ### Stable Release
25
+ 2 . Update version in ` package.json ` following semver:
37
26
38
- 1 . Update version in ` package.json ` following semver:
39
27
- MAJOR version for incompatible API changes
40
28
- MINOR version for backwards-compatible functionality
41
29
- PATCH version for backwards-compatible bug fixes
42
- 2 . Build the package:
30
+
31
+ 3 . Build the package:
32
+
43
33
``` bash
44
34
yarn build
45
35
```
46
- 3 . Publish:
36
+
37
+ 4 . Publish:
38
+
47
39
``` bash
48
40
npm publish --access public
49
41
```
@@ -62,7 +54,6 @@ This document outlines the steps to prepare and publish a new release of @circle
62
54
git tag @circle-libs/react-elements@[version]
63
55
git push origin --tags
64
56
```
65
- 5 . If this was a beta release that is now stable, update release notes with what changed
66
- 6 . Create a GitHub release with the changelog
57
+ 5 . Create a GitHub release with the changelog
67
58
68
59
This workflow ensures that version tags are always attached to the squashed commits in the main branch, preventing tag loss during squash merges.
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @circle-libs/react-elements" ,
3
- "version" : " 0.0.1-beta.4 " ,
3
+ "version" : " 0.1.0 " ,
4
4
"description" : " React components compatible with Circle SDK" ,
5
5
"keywords" : [
6
6
" react" ,
You can’t perform that action at this time.
0 commit comments