Skip to content

Commit c20971e

Browse files
authored
chore: release @circle-libs/[email protected] (#137)
1 parent 0ee25d9 commit c20971e

File tree

2 files changed

+10
-19
lines changed

2 files changed

+10
-19
lines changed

packages/circle-react-elements/RELEASE.md

+9-18
Original file line numberDiff line numberDiff line change
@@ -17,33 +17,25 @@ This document outlines the steps to prepare and publish a new release of @circle
1717
## Creating a Release
1818

1919
1. Create a new branch for the release:
20-
```bash
21-
git checkout -b release/v[version]
22-
```
2320

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:
3221
```bash
33-
npm publish --tag beta --access public
22+
git checkout -b release/v[version]
3423
```
3524

36-
### Stable Release
25+
2. Update version in `package.json` following semver:
3726

38-
1. Update version in `package.json` following semver:
3927
- MAJOR version for incompatible API changes
4028
- MINOR version for backwards-compatible functionality
4129
- PATCH version for backwards-compatible bug fixes
42-
2. Build the package:
30+
31+
3. Build the package:
32+
4333
```bash
4434
yarn build
4535
```
46-
3. Publish:
36+
37+
4. Publish:
38+
4739
```bash
4840
npm publish --access public
4941
```
@@ -62,7 +54,6 @@ This document outlines the steps to prepare and publish a new release of @circle
6254
git tag @circle-libs/react-elements@[version]
6355
git push origin --tags
6456
```
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
6758

6859
This workflow ensures that version tags are always attached to the squashed commits in the main branch, preventing tag loss during squash merges.

packages/circle-react-elements/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@circle-libs/react-elements",
3-
"version": "0.0.1-beta.4",
3+
"version": "0.1.0",
44
"description": "React components compatible with Circle SDK",
55
"keywords": [
66
"react",

0 commit comments

Comments
 (0)