From aaf93abce24f90a5f579c623e7b635b6282c988d Mon Sep 17 00:00:00 2001 From: Jim Toth Date: Thu, 18 Apr 2024 16:29:37 -0400 Subject: [PATCH] bump to v0.2.4 (#70) * bump to v0.2.4 * Adds operation script updates for v0.2.4 --- operations/cancel-distribution-dev.hcl | 2 +- operations/cancel-distribution-live.hcl | 2 +- operations/cancel-distribution-stage.hcl | 2 +- operations/deploy-distribution-dev.hcl | 2 +- operations/deploy-distribution-live.hcl | 2 +- operations/deploy-distribution-stage.hcl | 2 +- operations/deploy-relay-registry-dev.hcl | 2 +- operations/deploy-relay-registry-live.hcl | 2 +- operations/deploy-relay-registry-stage.hcl | 2 +- operations/dev-tests/add-relays-dev.hcl | 2 +- operations/dev-tests/add-relays-stage.hcl | 2 +- operations/dev-tests/add-scores-dev.hcl | 2 +- operations/dev-tests/add-scores-stage.hcl | 2 +- operations/evolve-distribution-dev.hcl | 2 +- operations/evolve-distribution-live.hcl | 2 +- operations/evolve-distribution-stage.hcl | 2 +- operations/evolve-relay-registry-dev.hcl | 2 +- operations/evolve-relay-registry-live.hcl | 2 +- operations/evolve-relay-registry-stage.hcl | 2 +- operations/set-distribution-bonus-dev.hcl | 2 +- operations/set-distribution-bonus-live.hcl | 2 +- operations/set-distribution-bonus-stage.hcl | 2 +- operations/set-distribution-multipliers-dev.hcl | 2 +- operations/set-distribution-multipliers-live.hcl | 2 +- operations/set-distribution-multipliers-stage.hcl | 2 +- operations/set-distribution-previous-tracking-limit-dev.hcl | 2 +- operations/set-distribution-previous-tracking-limit-live.hcl | 2 +- operations/set-distribution-previous-tracking-limit-stage.hcl | 2 +- operations/set-token-distribution-rate-dev.hcl | 2 +- operations/set-token-distribution-rate-live.hcl | 2 +- operations/set-token-distribution-rate-stage.hcl | 2 +- smartweave/package-lock.json | 4 ++-- smartweave/package.json | 2 +- 33 files changed, 34 insertions(+), 34 deletions(-) diff --git a/operations/cancel-distribution-dev.hcl b/operations/cancel-distribution-dev.hcl index 4a7e20b..c085e1a 100644 --- a/operations/cancel-distribution-dev.hcl +++ b/operations/cancel-distribution-dev.hcl @@ -11,7 +11,7 @@ job "cancel-distribution-dev" { config { network_mode = "host" - image = "ghcr.io/ator-development/smart-contracts:0.2.3" + image = "ghcr.io/ator-development/smart-contracts:0.2.4" entrypoint = ["npx"] command = "ts-node" args = ["scripts/distribution/cancel-distribution.ts"] diff --git a/operations/cancel-distribution-live.hcl b/operations/cancel-distribution-live.hcl index ebc5918..2330fc2 100644 --- a/operations/cancel-distribution-live.hcl +++ b/operations/cancel-distribution-live.hcl @@ -11,7 +11,7 @@ job "cancel-distribution-live" { config { network_mode = "host" - image = "ghcr.io/ator-development/smart-contracts:0.2.3" + image = "ghcr.io/ator-development/smart-contracts:0.2.4" entrypoint = ["npx"] command = "ts-node" args = ["scripts/distribution/cancel-distribution.ts"] diff --git a/operations/cancel-distribution-stage.hcl b/operations/cancel-distribution-stage.hcl index 13c841c..f92e0c8 100644 --- a/operations/cancel-distribution-stage.hcl +++ b/operations/cancel-distribution-stage.hcl @@ -11,7 +11,7 @@ job "cancel-distribution-stage" { config { network_mode = "host" - image = "ghcr.io/ator-development/smart-contracts:0.2.3" + image = "ghcr.io/ator-development/smart-contracts:0.2.4" entrypoint = ["npx"] command = "ts-node" args = ["scripts/distribution/cancel-distribution.ts"] diff --git a/operations/deploy-distribution-dev.hcl b/operations/deploy-distribution-dev.hcl index 4c7039d..b0bdf35 100644 --- a/operations/deploy-distribution-dev.hcl +++ b/operations/deploy-distribution-dev.hcl @@ -11,7 +11,7 @@ job "deploy-distribution-dev" { config { network_mode = "host" - image = "ghcr.io/ator-development/smart-contracts:0.2.3" + image = "ghcr.io/ator-development/smart-contracts:0.2.4" entrypoint = ["npm"] command = "run" args = ["deploy"] diff --git a/operations/deploy-distribution-live.hcl b/operations/deploy-distribution-live.hcl index 44d9f0a..031e484 100644 --- a/operations/deploy-distribution-live.hcl +++ b/operations/deploy-distribution-live.hcl @@ -11,7 +11,7 @@ job "deploy-distribution-live" { config { network_mode = "host" - image = "ghcr.io/ator-development/smart-contracts:0.2.3" + image = "ghcr.io/ator-development/smart-contracts:0.2.4" entrypoint = ["npm"] command = "run" args = ["deploy"] diff --git a/operations/deploy-distribution-stage.hcl b/operations/deploy-distribution-stage.hcl index e841a26..2bf9adf 100644 --- a/operations/deploy-distribution-stage.hcl +++ b/operations/deploy-distribution-stage.hcl @@ -11,7 +11,7 @@ job "deploy-distribution-stage" { config { network_mode = "host" - image = "ghcr.io/ator-development/smart-contracts:0.2.3" + image = "ghcr.io/ator-development/smart-contracts:0.2.4" entrypoint = ["npm"] command = "run" args = ["deploy"] diff --git a/operations/deploy-relay-registry-dev.hcl b/operations/deploy-relay-registry-dev.hcl index 7d779b6..85f60bd 100644 --- a/operations/deploy-relay-registry-dev.hcl +++ b/operations/deploy-relay-registry-dev.hcl @@ -11,7 +11,7 @@ job "deploy-relay-registry-dev" { config { network_mode = "host" - image = "ghcr.io/ator-development/smart-contracts:0.2.3" + image = "ghcr.io/ator-development/smart-contracts:0.2.4" entrypoint = ["npm"] command = "run" args = ["deploy"] diff --git a/operations/deploy-relay-registry-live.hcl b/operations/deploy-relay-registry-live.hcl index af7ddad..088df51 100644 --- a/operations/deploy-relay-registry-live.hcl +++ b/operations/deploy-relay-registry-live.hcl @@ -11,7 +11,7 @@ job "deploy-relay-registry-live" { config { network_mode = "host" - image = "ghcr.io/ator-development/smart-contracts:0.2.3" + image = "ghcr.io/ator-development/smart-contracts:0.2.4" entrypoint = ["npm"] command = "run" args = ["deploy"] diff --git a/operations/deploy-relay-registry-stage.hcl b/operations/deploy-relay-registry-stage.hcl index 37d8d74..4178441 100644 --- a/operations/deploy-relay-registry-stage.hcl +++ b/operations/deploy-relay-registry-stage.hcl @@ -11,7 +11,7 @@ job "deploy-relay-registry-stage" { config { network_mode = "host" - image = "ghcr.io/ator-development/smart-contracts:0.2.3" + image = "ghcr.io/ator-development/smart-contracts:0.2.4" entrypoint = ["npm"] command = "run" args = ["deploy"] diff --git a/operations/dev-tests/add-relays-dev.hcl b/operations/dev-tests/add-relays-dev.hcl index bfb9d24..ac1beb0 100644 --- a/operations/dev-tests/add-relays-dev.hcl +++ b/operations/dev-tests/add-relays-dev.hcl @@ -11,7 +11,7 @@ job "add-relays-dev" { config { network_mode = "host" - image = "ghcr.io/ator-development/smart-contracts:0.2.3" + image = "ghcr.io/ator-development/smart-contracts:0.2.4" entrypoint = ["npx"] command = "ts-node" args = ["scripts/relay-registry/add-relays.ts"] diff --git a/operations/dev-tests/add-relays-stage.hcl b/operations/dev-tests/add-relays-stage.hcl index 92b1e42..11160a0 100644 --- a/operations/dev-tests/add-relays-stage.hcl +++ b/operations/dev-tests/add-relays-stage.hcl @@ -11,7 +11,7 @@ job "add-relays-stage" { config { network_mode = "host" - image = "ghcr.io/ator-development/smart-contracts:0.2.3" + image = "ghcr.io/ator-development/smart-contracts:0.2.4" entrypoint = ["npx"] command = "ts-node" args = ["scripts/relay-registry/add-relays.ts"] diff --git a/operations/dev-tests/add-scores-dev.hcl b/operations/dev-tests/add-scores-dev.hcl index ff0618e..2e7cb05 100644 --- a/operations/dev-tests/add-scores-dev.hcl +++ b/operations/dev-tests/add-scores-dev.hcl @@ -12,7 +12,7 @@ job "add-scores-dev" { config { network_mode = "host" - image = "ghcr.io/ator-development/smart-contracts:0.2.3" + image = "ghcr.io/ator-development/smart-contracts:0.2.4" entrypoint = ["npx"] command = "ts-node" args = ["scripts/distribution/add-scores.ts"] diff --git a/operations/dev-tests/add-scores-stage.hcl b/operations/dev-tests/add-scores-stage.hcl index 248843f..8f5c401 100644 --- a/operations/dev-tests/add-scores-stage.hcl +++ b/operations/dev-tests/add-scores-stage.hcl @@ -12,7 +12,7 @@ job "add-scores-stage" { config { network_mode = "host" - image = "ghcr.io/ator-development/smart-contracts:0.2.3" + image = "ghcr.io/ator-development/smart-contracts:0.2.4" entrypoint = ["npx"] command = "ts-node" args = ["scripts/distribution/add-scores.ts"] diff --git a/operations/evolve-distribution-dev.hcl b/operations/evolve-distribution-dev.hcl index a2a5027..5947683 100644 --- a/operations/evolve-distribution-dev.hcl +++ b/operations/evolve-distribution-dev.hcl @@ -11,7 +11,7 @@ job "deploy-distribution-dev" { config { network_mode = "host" - image = "ghcr.io/ator-development/smart-contracts:0.2.3" + image = "ghcr.io/ator-development/smart-contracts:0.2.4" entrypoint = ["npm"] command = "run" args = ["evolve"] diff --git a/operations/evolve-distribution-live.hcl b/operations/evolve-distribution-live.hcl index 2266b3c..3777c79 100644 --- a/operations/evolve-distribution-live.hcl +++ b/operations/evolve-distribution-live.hcl @@ -11,7 +11,7 @@ job "deploy-distribution-live" { config { network_mode = "host" - image = "ghcr.io/ator-development/smart-contracts:0.2.3" + image = "ghcr.io/ator-development/smart-contracts:0.2.4" entrypoint = ["npm"] command = "run" args = ["evolve"] diff --git a/operations/evolve-distribution-stage.hcl b/operations/evolve-distribution-stage.hcl index b49b1a2..8480ea6 100644 --- a/operations/evolve-distribution-stage.hcl +++ b/operations/evolve-distribution-stage.hcl @@ -11,7 +11,7 @@ job "deploy-distribution-stage" { config { network_mode = "host" - image = "ghcr.io/ator-development/smart-contracts:0.2.3" + image = "ghcr.io/ator-development/smart-contracts:0.2.4" entrypoint = ["npm"] command = "run" args = ["evolve"] diff --git a/operations/evolve-relay-registry-dev.hcl b/operations/evolve-relay-registry-dev.hcl index 28ac189..facd140 100644 --- a/operations/evolve-relay-registry-dev.hcl +++ b/operations/evolve-relay-registry-dev.hcl @@ -11,7 +11,7 @@ job "evolve-relay-registry-dev" { config { network_mode = "host" - image = "ghcr.io/ator-development/smart-contracts:0.2.3" + image = "ghcr.io/ator-development/smart-contracts:0.2.4" entrypoint = ["npm"] command = "run" args = ["evolve"] diff --git a/operations/evolve-relay-registry-live.hcl b/operations/evolve-relay-registry-live.hcl index 9c6e689..1ca611b 100644 --- a/operations/evolve-relay-registry-live.hcl +++ b/operations/evolve-relay-registry-live.hcl @@ -11,7 +11,7 @@ job "evolve-relay-registry-live" { config { network_mode = "host" - image = "ghcr.io/ator-development/smart-contracts:0.2.3" + image = "ghcr.io/ator-development/smart-contracts:0.2.4" entrypoint = ["npm"] command = "run" args = ["evolve"] diff --git a/operations/evolve-relay-registry-stage.hcl b/operations/evolve-relay-registry-stage.hcl index f8402f5..637611d 100644 --- a/operations/evolve-relay-registry-stage.hcl +++ b/operations/evolve-relay-registry-stage.hcl @@ -11,7 +11,7 @@ job "evolve-relay-registry-stage" { config { network_mode = "host" - image = "ghcr.io/ator-development/smart-contracts:0.2.3" + image = "ghcr.io/ator-development/smart-contracts:0.2.4" entrypoint = ["npm"] command = "run" args = ["evolve"] diff --git a/operations/set-distribution-bonus-dev.hcl b/operations/set-distribution-bonus-dev.hcl index db738fb..dfdee11 100644 --- a/operations/set-distribution-bonus-dev.hcl +++ b/operations/set-distribution-bonus-dev.hcl @@ -11,7 +11,7 @@ job "set-distribution-bonus-dev" { config { network_mode = "host" - image = "ghcr.io/ator-development/smart-contracts:0.2.3" + image = "ghcr.io/ator-development/smart-contracts:0.2.4" entrypoint = ["npx"] command = "ts-node" args = ["scripts/distribution/set-distribution-bonus.ts"] diff --git a/operations/set-distribution-bonus-live.hcl b/operations/set-distribution-bonus-live.hcl index 7d6082a..de1bafe 100644 --- a/operations/set-distribution-bonus-live.hcl +++ b/operations/set-distribution-bonus-live.hcl @@ -11,7 +11,7 @@ job "set-distribution-bonus-live" { config { network_mode = "host" - image = "ghcr.io/ator-development/smart-contracts:0.2.3" + image = "ghcr.io/ator-development/smart-contracts:0.2.4" entrypoint = ["npx"] command = "ts-node" args = ["scripts/distribution/set-distribution-bonus.ts"] diff --git a/operations/set-distribution-bonus-stage.hcl b/operations/set-distribution-bonus-stage.hcl index ed493be..761111b 100644 --- a/operations/set-distribution-bonus-stage.hcl +++ b/operations/set-distribution-bonus-stage.hcl @@ -11,7 +11,7 @@ job "set-distribution-bonus-stage" { config { network_mode = "host" - image = "ghcr.io/ator-development/smart-contracts:0.2.3" + image = "ghcr.io/ator-development/smart-contracts:0.2.4" entrypoint = ["npx"] command = "ts-node" args = ["scripts/distribution/set-distribution-bonus.ts"] diff --git a/operations/set-distribution-multipliers-dev.hcl b/operations/set-distribution-multipliers-dev.hcl index da3d065..d2d44a1 100644 --- a/operations/set-distribution-multipliers-dev.hcl +++ b/operations/set-distribution-multipliers-dev.hcl @@ -11,7 +11,7 @@ job "set-distribution-multipliers-dev" { config { network_mode = "host" - image = "ghcr.io/ator-development/smart-contracts:0.2.3" + image = "ghcr.io/ator-development/smart-contracts:0.2.4" entrypoint = ["npx"] command = "ts-node" args = ["scripts/distribution/set-multipliers.ts"] diff --git a/operations/set-distribution-multipliers-live.hcl b/operations/set-distribution-multipliers-live.hcl index 9d312bd..99145a4 100644 --- a/operations/set-distribution-multipliers-live.hcl +++ b/operations/set-distribution-multipliers-live.hcl @@ -11,7 +11,7 @@ job "set-distribution-multipliers-live" { config { network_mode = "host" - image = "ghcr.io/ator-development/smart-contracts:0.2.3" + image = "ghcr.io/ator-development/smart-contracts:0.2.4" entrypoint = ["npx"] command = "ts-node" args = ["scripts/distribution/set-multipliers.ts"] diff --git a/operations/set-distribution-multipliers-stage.hcl b/operations/set-distribution-multipliers-stage.hcl index 52e3c6b..e0dea70 100644 --- a/operations/set-distribution-multipliers-stage.hcl +++ b/operations/set-distribution-multipliers-stage.hcl @@ -11,7 +11,7 @@ job "set-distribution-multipliers-stage" { config { network_mode = "host" - image = "ghcr.io/ator-development/smart-contracts:0.2.3" + image = "ghcr.io/ator-development/smart-contracts:0.2.4" entrypoint = ["npx"] command = "ts-node" args = ["scripts/distribution/set-multipliers.ts"] diff --git a/operations/set-distribution-previous-tracking-limit-dev.hcl b/operations/set-distribution-previous-tracking-limit-dev.hcl index 152ee6c..1d348d6 100644 --- a/operations/set-distribution-previous-tracking-limit-dev.hcl +++ b/operations/set-distribution-previous-tracking-limit-dev.hcl @@ -11,7 +11,7 @@ job "set-previous-distribution-tracking-limit-dev" { config { network_mode = "host" - image = "ghcr.io/ator-development/smart-contracts:0.2.3" + image = "ghcr.io/ator-development/smart-contracts:0.2.4" entrypoint = ["npx"] command = "ts-node" args = ["scripts/distribution/set-token-distribution-rate.ts"] diff --git a/operations/set-distribution-previous-tracking-limit-live.hcl b/operations/set-distribution-previous-tracking-limit-live.hcl index ec4dded..26e1478 100644 --- a/operations/set-distribution-previous-tracking-limit-live.hcl +++ b/operations/set-distribution-previous-tracking-limit-live.hcl @@ -11,7 +11,7 @@ job "set-previous-distribution-tracking-limit-live" { config { network_mode = "host" - image = "ghcr.io/ator-development/smart-contracts:0.2.3" + image = "ghcr.io/ator-development/smart-contracts:0.2.4" entrypoint = ["npx"] command = "ts-node" args = ["scripts/distribution/set-token-distribution-rate.ts"] diff --git a/operations/set-distribution-previous-tracking-limit-stage.hcl b/operations/set-distribution-previous-tracking-limit-stage.hcl index f9f465e..e9cf5ca 100644 --- a/operations/set-distribution-previous-tracking-limit-stage.hcl +++ b/operations/set-distribution-previous-tracking-limit-stage.hcl @@ -11,7 +11,7 @@ job "set-previous-distribution-tracking-limit-stage" { config { network_mode = "host" - image = "ghcr.io/ator-development/smart-contracts:0.2.3" + image = "ghcr.io/ator-development/smart-contracts:0.2.4" entrypoint = ["npx"] command = "ts-node" args = ["scripts/distribution/set-token-distribution-rate.ts"] diff --git a/operations/set-token-distribution-rate-dev.hcl b/operations/set-token-distribution-rate-dev.hcl index dc2eb18..806b55f 100644 --- a/operations/set-token-distribution-rate-dev.hcl +++ b/operations/set-token-distribution-rate-dev.hcl @@ -11,7 +11,7 @@ job "set-token-distribution-rate-dev" { config { network_mode = "host" - image = "ghcr.io/ator-development/smart-contracts:0.2.3" + image = "ghcr.io/ator-development/smart-contracts:0.2.4" entrypoint = ["npx"] command = "ts-node" args = ["scripts/distribution/set-token-distribution-rate.ts"] diff --git a/operations/set-token-distribution-rate-live.hcl b/operations/set-token-distribution-rate-live.hcl index efcf07e..18db4f6 100644 --- a/operations/set-token-distribution-rate-live.hcl +++ b/operations/set-token-distribution-rate-live.hcl @@ -11,7 +11,7 @@ job "set-token-distribution-rate-live" { config { network_mode = "host" - image = "ghcr.io/ator-development/smart-contracts:0.2.3" + image = "ghcr.io/ator-development/smart-contracts:0.2.4" entrypoint = ["npx"] command = "ts-node" args = ["scripts/distribution/set-token-distribution-rate.ts"] diff --git a/operations/set-token-distribution-rate-stage.hcl b/operations/set-token-distribution-rate-stage.hcl index 50c5daa..56b7c48 100644 --- a/operations/set-token-distribution-rate-stage.hcl +++ b/operations/set-token-distribution-rate-stage.hcl @@ -11,7 +11,7 @@ job "set-token-distribution-rate-stage" { config { network_mode = "host" - image = "ghcr.io/ator-development/smart-contracts:0.2.3" + image = "ghcr.io/ator-development/smart-contracts:0.2.4" entrypoint = ["npx"] command = "ts-node" args = ["scripts/distribution/set-token-distribution-rate.ts"] diff --git a/smartweave/package-lock.json b/smartweave/package-lock.json index c52eb43..a04ae8d 100644 --- a/smartweave/package-lock.json +++ b/smartweave/package-lock.json @@ -1,12 +1,12 @@ { "name": "@ator/smart-contracts-smartweave", - "version": "0.2.2", + "version": "0.2.4", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@ator/smart-contracts-smartweave", - "version": "0.2.1", + "version": "0.2.4", "license": "AGPL-3.0-only", "dependencies": { "arweave": "1.14.4", diff --git a/smartweave/package.json b/smartweave/package.json index 28e459c..23f36c7 100644 --- a/smartweave/package.json +++ b/smartweave/package.json @@ -1,6 +1,6 @@ { "name": "@ator/smart-contracts-smartweave", - "version": "0.2.2", + "version": "0.2.4", "contributors": [ "ATOR Labs", "Jim Toth "