Skip to content

Commit

Permalink
Merge branch 'merge'
Browse files Browse the repository at this point in the history
  • Loading branch information
jacderida committed Feb 27, 2025
2 parents 76522c4 + 0e6199a commit 267495e
Show file tree
Hide file tree
Showing 65 changed files with 1,580 additions and 728 deletions.
18 changes: 11 additions & 7 deletions .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,13 +152,17 @@ jobs:
timeout-minutes: 5
run: cargo test --release --package ant-networking --features="open-metrics" can_store_after_restart

- name: Run network tests
timeout-minutes: 25
run: cargo test --release --package ant-networking --features="open-metrics" -- --skip can_store_after_restart

- name: Run network tests
timeout-minutes: 5
run: cargo test --release --package ant-networking --features="open-metrics" can_store_after_restart
# Same set of tests shall be executed with `encrypt-records` flag enabled.
# With now changed to `always carry out encryption`, no need to re-run the same set again.
# Re-enable the following block once default behaviour changed.
#
# - name: Run network tests
# timeout-minutes: 25
# run: cargo test --release --package ant-networking --features="open-metrics, encrypt-records" -- --skip can_store_after_restart

# - name: Run network tests
# timeout-minutes: 5
# run: cargo test --release --package ant-networking --features="open-metrics, encrypt-records" can_store_after_restart

- name: Run protocol tests
timeout-minutes: 25
Expand Down
120 changes: 98 additions & 22 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 ant-bootstrap/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ license = "GPL-3.0"
name = "ant-bootstrap"
readme = "README.md"
repository = "https://github.com/maidsafe/autonomi"
version = "0.1.5"
version = "0.1.6-rc.3"

[dependencies]
ant-logging = { path = "../ant-logging", version = "0.2.46" }
ant-protocol = { path = "../ant-protocol", version = "1.0.0" }
ant-logging = { path = "../ant-logging", version = "0.2.47-rc.3" }
ant-protocol = { path = "../ant-protocol", version = "1.0.1-rc.3" }
atomic-write-file = "0.2.2"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4.2.1", features = ["derive", "env"] }
Expand Down
2 changes: 1 addition & 1 deletion ant-build-info/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "GPL-3.0"
name = "ant-build-info"
readme = "README.md"
repository = "https://github.com/maidsafe/autonomi"
version = "0.1.24"
version = "0.1.25-rc.3"
build = "build.rs"
include = ["Cargo.toml", "src/**/*", "build.rs"]

Expand Down
2 changes: 1 addition & 1 deletion ant-build-info/src/release_info.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pub const RELEASE_YEAR: &str = "2025";
pub const RELEASE_MONTH: &str = "1";
pub const RELEASE_CYCLE: &str = "2";
pub const RELEASE_CYCLE_COUNTER: &str = "3";
pub const RELEASE_CYCLE_COUNTER: &str = "6";
Loading

0 comments on commit 267495e

Please sign in to comment.