@airmoney-degn/airmoney-cli 0.22.0 → 0.23.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/config.json CHANGED
@@ -1,3 +1,3 @@
1
1
  {
2
- "version": "0.22.0"
2
+ "version": "0.23.0"
3
3
  }
@@ -21,7 +21,7 @@ function validateNetwork(network) {
21
21
  return true;
22
22
  }
23
23
  const networkMap = {
24
- devnet: 'https://rpc-dev.air.fun/',
24
+ devnet: 'https://api-dev.degn.com/',
25
25
  mainnet: 'https://rpc.air.fun/',
26
26
  };
27
27
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@airmoney-degn/airmoney-cli",
3
- "version": "0.22.0",
3
+ "version": "0.23.0",
4
4
  "description": "airmoney-cli is a command-line interface tool designed to facilitate the development and management of decentralized applications (DApps) for Airmoney.",
5
5
  "publishConfig": {
6
6
  "access": "public"
package/readme.md CHANGED
@@ -20,3 +20,31 @@ Before you begin, ensure you have Node.js and npm installed on your machine.
20
20
  ```bash
21
21
  npm install -g airmoney-cli
22
22
  ```
23
+
24
+ ## Release Process
25
+
26
+ To create a new release:
27
+
28
+ 1. **Bump the version** using changesets:
29
+ ```bash
30
+ npm run bump
31
+ ```
32
+ This will create a changeset and update the version in `package.json`.
33
+
34
+ 2. **Tag the version** with the format `v{version}`:
35
+ ```bash
36
+ git tag v0.23.0
37
+ ```
38
+ Replace `0.23.0` with the actual version number from `package.json`.
39
+
40
+ 3. **Push the tag** to trigger GitHub CI:
41
+ ```bash
42
+ git push origin v0.23.0
43
+ ```
44
+
45
+ 4. **GitHub CI will automatically**:
46
+ - Build the project
47
+ - Publish to npm
48
+ - Create a GitHub release
49
+
50
+ **Note**: Make sure to commit and push your changes before creating the tag.