Skip to content

Commit

Permalink
Version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Wiezzel committed May 27, 2024
1 parent f5cc785 commit abe3afa
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ members = ["crates/*"]
resolver = "2"

[workspace.dependencies]
contract-client = { git = "https://github.com/subsquid/subsquid-network.git", version = "1.0.0-rc1" }
subsquid-messages = { git = "https://github.com/subsquid/subsquid-network.git", version = "1.0.0-rc3" }
subsquid-network-transport = { git = "https://github.com/subsquid/subsquid-network.git", version = "1.0.0-rc3" }
contract-client = { git = "https://github.com/subsquid/subsquid-network.git", version = "1.0.0" }
subsquid-messages = { git = "https://github.com/subsquid/subsquid-network.git", version = "1.0.0" }
subsquid-network-transport = { git = "https://github.com/subsquid/subsquid-network.git", version = "1.0.0" }
2 changes: 1 addition & 1 deletion crates/logs-collector/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "logs-collector"
version = "1.0.0-rc3"
version = "1.0.0"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/network-scheduler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "network-scheduler"
version = "1.0.0-rc3"
version = "1.0.0"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/network-scheduler/src/scheduler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ use crate::scheduling_unit::{SchedulingUnit, UnitId};
use crate::worker_state::{JailReason, WorkerState};

lazy_static! {
pub static ref SUPPORTED_WORKER_VERSIONS: VersionReq = ">=1.0.0-rc2".parse().unwrap();
pub static ref SUPPORTED_WORKER_VERSIONS: VersionReq = ">=1.0.0-rc3".parse().unwrap();
}
const WORKER_ID_HEADER: &str = "worker-id";
const WORKER_SIGNATURE_HEADER: &str = "worker-signature";
Expand Down
2 changes: 1 addition & 1 deletion scripts/traffic_generator/traffic_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
QUERY_TIMEOUT_SEC = int(os.environ.get('QUERY_TIMEOUT_SEC', 60))
MIN_INTERVAL_SEC = float(os.environ.get('MIN_INTERVAL_SEC', 60))
SKIP_GREYLISTED = os.environ.get('SKIP_GREYLISTED', '').lower() in ('1', 't', 'true', 'y', 'yes')
MIN_WORKER_VERSION = Version(os.environ.get('MIN_WORKER_VERSION', '1.0.0-rc1'))
MIN_WORKER_VERSION = Version(os.environ.get('MIN_WORKER_VERSION', '1.0.0-rc3'))

GATEWAY_URL = os.environ.get('GATEWAY_URL', "http://localhost:8000")
SCHEDULER_URL = os.environ.get('WORKERS_URL', "https://scheduler.testnet.subsquid.io")
Expand Down

0 comments on commit abe3afa

Please sign in to comment.