Skip to content

Commit

Permalink
v1.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bajtos committed Jun 12, 2024
1 parent e48f277 commit dea2ee6
Show file tree
Hide file tree
Showing 5 changed files with 1,963 additions and 11 deletions.
17 changes: 8 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,15 @@ $ zinnia run test.js

## Release

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

```bash
$ git add .
$ git commit -m v$SPARK_VERSION
$ git tag -s v$SPARK_VERSION -m v$SPARK_VERSION
$ git push
$ git push origin v$SPARK_VERSION
$ ./release.sh <semver>
$ # Example
$ ./release.sh 1.0.0
```

Go to GitHub releases and create a new release for the tag you just created.
Use GitHub's changelog feature to fill out the release message.
Use GitHub's changelog feature to fill out the release notes.

Publish the new release and let the CI/CD workflow upload the sources
to IPFS & IPNS.
2 changes: 1 addition & 1 deletion lib/constants.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const SPARK_VERSION = '1.12.0'
export const SPARK_VERSION = '1.12.1'
export const MAX_CAR_SIZE = 200 * 1024 * 1024 // 200 MB
export const APPROX_ROUND_LENGTH_IN_MS = 20 * 60_000 // 20 minutes
export const RPC_URL = 'https://api.node.glif.io/'
Expand Down
2 changes: 1 addition & 1 deletion manual-check.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import Spark from './lib/spark.js'

// The task to check, replace with your own values
const cid = 'bafkreih25dih6ug3xtj73vswccw423b56ilrwmnos4cbwhrceudopdp5sq'
const cid = 'bafybeiepi56qxfcwqgpstg25r6sonig7y3pzd37lwambzmlcmbnujjri4a'
const minerId = 'f010479'

// Run the check
Expand Down
Loading

0 comments on commit dea2ee6

Please sign in to comment.