Skip to content

Commit dea2ee6

Browse files
committed
v1.12.1
1 parent e48f277 commit dea2ee6

File tree

5 files changed

+1963
-11
lines changed

5 files changed

+1963
-11
lines changed

README.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,15 @@ $ zinnia run test.js
1919

2020
## Release
2121

22-
On a clean working tree, first bump semver `SPARK_VERSION` in `lib/constants.js`.
23-
Then, replacing `$SPARK_VERSION` with the new `SPARK_VERSION`:
22+
On a clean working tree, run the following command:
2423

2524
```bash
26-
$ git add .
27-
$ git commit -m v$SPARK_VERSION
28-
$ git tag -s v$SPARK_VERSION -m v$SPARK_VERSION
29-
$ git push
30-
$ git push origin v$SPARK_VERSION
25+
$ ./release.sh <semver>
26+
$ # Example
27+
$ ./release.sh 1.0.0
3128
```
3229

33-
Go to GitHub releases and create a new release for the tag you just created.
34-
Use GitHub's changelog feature to fill out the release message.
30+
Use GitHub's changelog feature to fill out the release notes.
31+
32+
Publish the new release and let the CI/CD workflow upload the sources
33+
to IPFS & IPNS.

lib/constants.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export const SPARK_VERSION = '1.12.0'
1+
export const SPARK_VERSION = '1.12.1'
22
export const MAX_CAR_SIZE = 200 * 1024 * 1024 // 200 MB
33
export const APPROX_ROUND_LENGTH_IN_MS = 20 * 60_000 // 20 minutes
44
export const RPC_URL = 'https://api.node.glif.io/'

manual-check.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import Spark from './lib/spark.js'
77

88
// The task to check, replace with your own values
9-
const cid = 'bafkreih25dih6ug3xtj73vswccw423b56ilrwmnos4cbwhrceudopdp5sq'
9+
const cid = 'bafybeiepi56qxfcwqgpstg25r6sonig7y3pzd37lwambzmlcmbnujjri4a'
1010
const minerId = 'f010479'
1111

1212
// Run the check

0 commit comments

Comments
 (0)