Skip to content

Commit 1580e7c

Browse files
committed
v2.2.3 - dev-file for deploy
1 parent 54418aa commit 1580e7c

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

HISTORY.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# HISTORY
22

3+
### v2.2.3
4+
5+
- Use `/dev-file` for file upload to URL endpoint on `deploy`
6+
37
### v2.2.2
48

59
- Add arm64 support for Linux platforms.

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,11 @@ cp -r path/to/contracts/* test/assets/ && ls ./test/assets/*-slim.js | sed -En '
9393
Current release hashes will always be listed here.
9494

9595
```
96-
7ef6875b8eefef90aa09e569fc817b17c14c866204d028d5012dd5177e2aef06 dist/chel-v2.2.2-aarch64-apple-darwin.tar.gz
97-
ac01a9a391b7aa7a16af36f59ad4858abed37ef02415a448bf9fc76446ff8207 dist/chel-v2.2.2-aarch64-unknown-linux-gnu.tar.gz
98-
786bf79a1235f5ea3f59238c43be339b91df9d933ab4291fb3bc4dc89c1fd263 dist/chel-v2.2.2-x86_64-apple-darwin.tar.gz
99-
87bf34281997a375347c4ed6ab99b1326d774d9d985f191fa086ed28ef732387 dist/chel-v2.2.2-x86_64-pc-windows-msvc.tar.gz
100-
8e35bcf26d16026b38238c1c835cde16d0bd859ba704c1228c324c151c2742c1 dist/chel-v2.2.2-x86_64-unknown-linux-gnu.tar.gz
96+
eefc0c783937e879153c2bc36f3aa435570d6ab4b8d786af2c11c72d21984a91 dist/chel-v2.2.3-aarch64-apple-darwin.tar.gz
97+
8211e8f01ebe06020e2cb383b931d761d103a3de7a7e3fac7948aa0feb275358 dist/chel-v2.2.3-aarch64-unknown-linux-gnu.tar.gz
98+
924e00ee0b3a7aa87bea58baad44bed75e41cab0581da9ea3409e713a594f64c dist/chel-v2.2.3-x86_64-apple-darwin.tar.gz
99+
30671935a46194b4e4dcbc56e9f5272421f45dc602a0fef9536ba8d5e9eaa26d dist/chel-v2.2.3-x86_64-pc-windows-msvc.tar.gz
100+
88aef6fbc2fe671a2a2b3bf6ed99cfdae3a1083b452cc963b5162bcacb03979f dist/chel-v2.2.3-x86_64-unknown-linux-gnu.tar.gz
101101
```
102102

103103
## History

build/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ function uploadEntryToURL([cid, buffer], url) {
313313
const form = new FormData();
314314
form.append("hash", cid);
315315
form.append("data", new Blob([buffer]));
316-
return fetch(`${url}/file`, { method: "POST", body: form }).then(handleFetchResult("text")).then((r) => {
316+
return fetch(`${url}/dev-file`, { method: "POST", body: form }).then(handleFetchResult("text")).then((r) => {
317317
if (r !== `/file/${cid}`) {
318318
throw new Error(`server returned bad URL: ${r}`);
319319
}
@@ -936,7 +936,7 @@ var verifySignature2 = async (args, internal = false) => {
936936

937937
// src/version.ts
938938
function version() {
939-
console.log("2.2.2");
939+
console.log("2.2.3");
940940
}
941941

942942
// src/main.ts

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chelonia/cli",
3-
"version": "2.2.2",
3+
"version": "2.2.3",
44
"description": "Chelonia Command-line Interface",
55
"main": "src/main.ts",
66
"scripts": {

0 commit comments

Comments
 (0)