Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Release v1.6.0 #8319

Merged
merged 16 commits into from
Feb 23, 2024
Merged

chore: Release v1.6.0 #8319

merged 16 commits into from
Feb 23, 2024

Conversation

upbqdn
Copy link
Member

@upbqdn upbqdn commented Feb 23, 2024


name: 'Release Checklist Template'
about: 'Checklist to create and publish a Zebra release'
title: 'Release Zebra (version)'
labels: 'A-release, C-trivial, P-Critical 🚑'
assignees: ''


Prepare for the Release

  • Make sure there has been at least one successful full sync test since the last state change, or start a manual full sync.
  • Make sure the PRs with the new checkpoint hashes and missed dependencies are already merged.
    (See the release ticket checklist for details)

Summarise Release Changes

These steps can be done a few days before the release, in the same PR:

Change Log

Important: Any merge into main deletes any edits to the draft changelog.
Once you are ready to tag a release, copy the draft changelog into CHANGELOG.md.

We use the Release Drafter workflow to automatically create a draft changelog. We follow the Keep a Changelog format.

To create the final change log:

  • Copy the latest draft changelog into CHANGELOG.md (there can be multiple draft releases)
  • Delete any trivial changes
    • Put the list of deleted changelog entries in a PR comment to make reviewing easier
  • Combine duplicate changes
  • Edit change descriptions so they will make sense to Zebra users
  • Check the category for each change
    • Prefer the "Fix" category if you're not sure

README

README updates can be skipped for urgent releases.

Update the README to:

  • Remove any "Known Issues" that have been fixed since the last release.
  • Update the "Build and Run Instructions" with any new dependencies.
    Check for changes in the Dockerfile since the last tag: git diff <previous-release-tag> docker/Dockerfile.
  • If Zebra has started using newer Rust language features or standard library APIs, update the known working Rust version in the README, book, and Cargo.tomls

You can use a command like:

fastmod --fixed-strings '1.58' '1.65'

Create the Release PR

  • Push the updated changelog and README into a new branch
    for example: bump-v1.0.0 - this needs to be different to the tag name
  • Create a release PR by adding &template=release-checklist.md to the comparing url (Example).
  • Freeze the batched queue using Mergify.
  • Mark all the release PRs as Critical priority, so they go in the urgent Mergify queue.
  • Mark all non-release PRs with do-not-merge, because Mergify checks approved PRs against every commit, even when a queue is frozen.

Update Versions and End of Support

Update Zebra Version

Choose a Release Level

Zebra follows semantic versioning. Semantic versions look like: MAJOR.MINOR.PATCH[-TAG.PRE-RELEASE]

Choose a release level for zebrad. Release levels are based on user-visible changes from the changelog:

  • Mainnet Network Upgrades are major releases
  • significant new features or behaviour changes; changes to RPCs, command-line, or configs; and deprecations or removals are minor releases
  • otherwise, it is a patch release

Zebra's Rust API doesn't have any support or stability guarantees, so we keep all the zebra-* and tower-* crates on a beta pre-release version.

Update Crate Versions

If you're publishing crates for the first time, log in to crates.io,
and make sure you're a member of owners group.

Check that the release will work:

  • Update crate versions, commit the changes to the release branch, and do a release dry-run:
# Update everything except for alpha crates and zebrad:
cargo release version --verbose --execute --allow-branch '*' --workspace --exclude zebrad --exclude zebra-scan --exclude zebra-grpc beta
# Due to a bug in cargo-release, we need to pass exact versions for alpha crates:
cargo release version --verbose --execute --allow-branch '*' --package zebra-scan 0.1.0-alpha.4
cargo release version --verbose --execute --allow-branch '*' --package zebra-grpc 0.1.0-alpha.2
# Update zebrad:
cargo release version --verbose --execute --allow-branch '*' --package zebrad patch # [ major | minor | patch ]
# Continue with the release process:
cargo release replace --verbose --execute --allow-branch '*' --package zebrad
cargo release commit --verbose --execute --allow-branch '*'

Crate publishing is automatically checked in CI using "dry run" mode, however due to a bug in cargo-release we need to pass exact versions to the alpha crates:

Update End of Support

The end of support height is calculated from the current blockchain height:

  • Find where the Zcash blockchain tip is now by using a Zcash explorer or other tool.
  • Replace ESTIMATED_RELEASE_HEIGHT in end_of_support.rs with the height you estimate the release will be tagged.
Optional: calculate the release tagging height
  • Add 1152 blocks for each day until the release
  • For example, if the release is in 3 days, add 1152 * 3 to the current Mainnet block height

Update the Release PR

  • Push the version increments and the release constants to the release branch.

Publish the Zebra Release

Create the GitHub Pre-Release

  • Wait for all the release PRs to be merged
  • Create a new release using the draft release as a base, by clicking the Edit icon in the draft release
  • Set the tag name to the version tag,
    for example: v1.0.0
  • Set the release to target the main branch
  • Set the release title to Zebra followed by the version tag,
    for example: Zebra 1.0.0
  • Replace the prepopulated draft changelog in the release description with the final changelog you created;
    starting just after the title ## [Zebra ... of the current version being released,
    and ending just before the title of the previous release.
  • Mark the release as 'pre-release', until it has been built and tested
  • Publish the pre-release to GitHub using "Publish Release"
  • Delete all the draft releases from the list of releases

Test the Pre-Release

Publish Release

Publish Crates

  • Run cargo login
  • Run cargo clean in the zebra repo (optional)
  • Publish the crates to crates.io: cargo release publish --verbose --workspace --execute
  • Check that Zebra can be installed from crates.io:
    cargo install --locked --force --version 1.minor.patch zebrad && ~/.cargo/bin/zebrad
    and put the output in a comment on the PR.

Publish Docker Images

Release Failures

If building or running fails after tagging:

Tag a new release, following these instructions...
  1. Fix the bug that caused the failure
  2. Start a new patch release
  3. Skip the Release Preparation, and start at the Release Changes step
  4. Update CHANGELOG.md with details about the fix
  5. Follow the release checklist for the new Zebra version

@upbqdn upbqdn added A-release Area: Zebra releases and release management P-Critical 🚑 labels Feb 23, 2024
@upbqdn upbqdn self-assigned this Feb 23, 2024
@upbqdn upbqdn requested a review from a team as a code owner February 23, 2024 12:32
@upbqdn upbqdn requested review from arya2 and removed request for a team February 23, 2024 12:32
@github-actions github-actions bot added the C-trivial Category: A trivial change that is not worth mentioning in the CHANGELOG label Feb 23, 2024
@upbqdn
Copy link
Member Author

upbqdn commented Feb 23, 2024

PRs I excluded from CHANGELOG:

  • Enable optional fields for Protocol Buffers older than v3.15.0 (#8282)
  • change(release.toml): new crates owners list (#8247)
  • build(deps): bump the cargo group across 1 directories with 3 updates (#8263)
  • build(deps): bump the devops group with 1 update (#8270)
  • build(deps): bump the devops group with 2 updates (#8166)
  • build(deps): bump the devops group with 4 updates (#8246)
  • build(deps): bump the devops group with 4 updates (#8194)
  • build(deps): bump the devops group with 5 updates (#8218)
  • build(deps): bump the prod group with 14 updates (#8264)
  • build(deps): bump the prod group with 3 updates (#8283)
  • build(deps): bump the prod group with 6 updates (#8230)
  • build(deps): bump the prod group with 6 updates (#8190)
  • build(deps): bump the prod group with 7 updates (#8208)
  • build(deps): bump the devops group with 1 update (#8306)
  • Fix formatting in proptest macros (#8252)
  • fix(CI): Pin cargo-deny-action to v1.5.10 (#8192)
  • change(CI): Unpin cargo-deny-action (#8197)
  • fix(ci): Uses lightwalletd v0.4.16 in tests (#8234)
  • fix(ci): keep gcloud arguments consistency (#8305)
  • ref(docker): Consolidate all tests in the entrypoint.sh script (#8175)
  • add(scan): Add the scan_start_where_left test to CI (#8172)
  • fix(ci): keep gcloud arguments consistency (#8305)
  • release(tests): update dry-run release commands (#8298)
  • chore: Update Checkpoints (#8309)
  • chore: Update Dependencies (#8310)
  • fix(ci): keep gcloud arguments consistency (#8305)

@upbqdn upbqdn marked this pull request as draft February 23, 2024 13:04
@upbqdn upbqdn removed the request for review from arya2 February 23, 2024 13:05
@mpguerra mpguerra linked an issue Feb 23, 2024 that may be closed by this pull request
17 tasks
@upbqdn upbqdn marked this pull request as ready for review February 23, 2024 18:12
@upbqdn upbqdn requested review from a team as code owners February 23, 2024 18:12
@upbqdn upbqdn requested review from arya2 and removed request for a team February 23, 2024 18:12
@upbqdn upbqdn requested a review from a team as a code owner February 23, 2024 19:37
Copy link
Contributor

@arya2 arya2 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks good, thank you!

zebrad/src/components/sync/end_of_support.rs Show resolved Hide resolved
CHANGELOG.md Outdated Show resolved Hide resolved
CHANGELOG.md Outdated Show resolved Hide resolved
CHANGELOG.md Outdated Show resolved Hide resolved
CHANGELOG.md Outdated Show resolved Hide resolved
CHANGELOG.md Outdated Show resolved Hide resolved
CHANGELOG.md Outdated Show resolved Hide resolved
Copy link
Member Author

@upbqdn upbqdn left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the fixes!

zebrad/src/components/sync/end_of_support.rs Show resolved Hide resolved
arya2
arya2 previously approved these changes Feb 23, 2024
Copy link
Contributor

@arya2 arya2 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you!

arya2
arya2 previously approved these changes Feb 23, 2024
@upbqdn
Copy link
Member Author

upbqdn commented Feb 23, 2024

@Mergifyio refresh

Copy link
Contributor

mergify bot commented Feb 23, 2024

refresh

✅ Pull request refreshed

@mergify mergify bot merged commit 58bfe97 into main Feb 23, 2024
188 checks passed
@mergify mergify bot deleted the bump-v1.6.0 branch February 23, 2024 23:28
@upbqdn
Copy link
Member Author

upbqdn commented Feb 26, 2024

Here's the output from cargo install --locked --force --version 1.6.0 zebrad && ~/.cargo/bin/zebrad:

  Downloaded zebrad v1.6.0
  Downloaded 1 crate (257.4 KB) in 1.37s
    Updating crates.io index
  Installing zebrad v1.6.0
    Updating crates.io index
    Updating crates.io index
   Compiling proc-macro2 v1.0.78
   Compiling unicode-ident v1.0.12
   Compiling libc v0.2.153
   Compiling cfg-if v1.0.0
   Compiling version_check v0.9.4
   Compiling serde v1.0.197
   Compiling autocfg v1.1.0
   Compiling once_cell v1.19.0
   Compiling subtle v2.4.1
   Compiling typenum v1.17.0
   Compiling log v0.4.20
   Compiling pin-project-lite v0.2.13
   Compiling memchr v2.7.1
   Compiling spin v0.5.2
   Compiling arrayvec v0.7.4
   Compiling ppv-lite86 v0.2.17
   Compiling byteorder v1.5.0
   Compiling radium v0.7.0
   Compiling nonempty v0.7.0
   Compiling tap v1.0.1
   Compiling crossbeam-utils v0.8.19
   Compiling constant_time_eq v0.3.0
   Compiling arrayref v0.3.7
   Compiling thiserror v1.0.57
   Compiling funty v2.0.0
   Compiling futures-core v0.3.30
   Compiling cpufeatures v0.2.12
   Compiling futures-sink v0.3.30
   Compiling syn v1.0.109
   Compiling semver v1.0.22
   Compiling static_assertions v1.1.0
   Compiling zerocopy v0.7.32
   Compiling either v1.10.0
   Compiling rayon-core v1.12.1
   Compiling bytes v1.5.0
   Compiling bitflags v2.4.2
   Compiling regex-syntax v0.8.2
   Compiling futures-task v0.3.30
   Compiling pin-utils v0.1.0
   Compiling tinyvec_macros v0.1.1
   Compiling futures-io v0.3.30
   Compiling crunchy v0.2.2
   Compiling allocator-api2 v0.2.16
   Compiling glob v0.3.1
   Compiling itoa v1.0.10
   Compiling prettyplease v0.2.16
   Compiling rustix v0.38.31
   Compiling minimal-lexical v0.2.1
   Compiling libm v0.2.8
   Compiling linux-raw-sys v0.4.13
   Compiling opaque-debug v0.3.0
   Compiling ident_case v1.0.1
   Compiling equivalent v1.0.1
   Compiling smallvec v1.13.1
   Compiling home v0.5.9
   Compiling bindgen v0.69.4
   Compiling base64ct v1.0.1
   Compiling halo2_legacy_pdqsort v0.1.0
   Compiling fnv v1.0.7
   Compiling lazy_static v1.4.0
   Compiling rustc-hash v1.1.0
   Compiling serde_json v1.0.114
   Compiling lazycell v1.3.0
   Compiling untrusted v0.7.1
   Compiling strsim v0.10.0
   Compiling platforms v3.3.0
   Compiling shlex v1.3.0
   Compiling num-traits v0.2.18
   Compiling slab v0.4.9
   Compiling generic-array v0.14.7
   Compiling ahash v0.8.7
   Compiling tracing-core v0.1.32
   Compiling num-bigint v0.4.4
   Compiling lock_api v0.4.11
   Compiling byte-slice-cast v1.2.2
   Compiling ryu v1.0.17
   Compiling bech32 v0.9.1
   Compiling scopeguard v1.2.0
   Compiling rustc-hex v2.1.0
   Compiling pkg-config v0.3.30
   Compiling memuse v0.2.1
   Compiling tower-service v0.3.2
   Compiling getrandom v0.1.16
   Compiling vcpkg v0.2.15
   Compiling signature v2.2.0
   Compiling regex-syntax v0.6.29
   Compiling unicode-width v0.1.11
   Compiling termcolor v1.4.1
   Compiling cxxbridge-flags v1.0.107
   Compiling aho-corasick v1.1.2
   Compiling parking_lot_core v0.9.9
   Compiling humantime v2.1.0
   Compiling iana-time-zone v0.1.60
   Compiling clang-sys v1.7.0
   Compiling portable-atomic v1.6.0
   Compiling tinyvec v1.6.0
   Compiling overload v0.1.1
   Compiling itertools v0.12.1
   Compiling rustversion v1.0.14
   Compiling tower-layer v0.3.2
   Compiling futures-channel v0.3.30
   Compiling thread_local v1.1.8
   Compiling libloading v0.8.1
   Compiling unicode-bidi v0.3.15
   Compiling nom v7.1.3
   Compiling incrementalmerkletree v0.5.0
   Compiling option-ext v0.2.0
   Compiling number_prefix v0.4.0
   Compiling percent-encoding v2.3.1
   Compiling camino v1.1.6
   Compiling unicase v2.7.0
   Compiling crossbeam-epoch v0.9.18
   Compiling crossbeam-channel v0.5.11
   Compiling anyhow v1.0.80
   Compiling powerfmt v0.2.0
   Compiling blake2b_simd v1.0.2
   Compiling blake2s_simd v1.0.2
   Compiling parking_lot_core v0.8.6
   Compiling fastrand v2.0.1
   Compiling known-folders v1.1.0
   Compiling zcash_encoding v0.2.0
   Compiling cc v1.0.86
   Compiling xdg v2.5.2
   Compiling httparse v1.8.0
   Compiling utf8parse v0.2.1
   Compiling wyz v0.5.1
   Compiling rlimit v0.10.1
   Compiling vergen v8.3.1
   Compiling bstr v1.9.0
   Compiling getrandom v0.2.12
   Compiling num_cpus v1.16.0
   Compiling mio v0.8.10
   Compiling socket2 v0.5.5
   Compiling signal-hook-registry v1.4.1
   Compiling num-integer v0.1.46
   Compiling hdrhistogram v7.5.4
   Compiling instant v0.1.12
   Compiling time-core v0.1.2
   Compiling sharded-slab v0.1.7
   Compiling num-conv v0.1.0
   Compiling eyre v0.6.12
   Compiling try-lock v0.2.5
   Compiling nu-ansi-term v0.46.0
   Compiling num_threads v0.1.7
   Compiling quote v1.0.35
   Compiling tracing-log v0.2.0
   Compiling gimli v0.28.1
   Compiling codespan-reporting v0.11.1
   Compiling console v0.15.8
   Compiling unicode-normalization v0.1.23
   Compiling colorchoice v1.0.0
   Compiling crypto-common v0.1.6
   Compiling block-buffer v0.10.4
   Compiling inout v0.1.3
   Compiling anstyle-query v1.0.2
   Compiling adler v1.0.2
   Compiling dirs-sys v0.4.1
   Compiling anstyle v1.0.6
   Compiling bitvec v1.0.1
   Compiling form_urlencoded v1.2.1
   Compiling bridgetree v0.4.0
   Compiling deranged v0.3.11
   Compiling object v0.32.2
   Compiling anstyle-parse v0.2.3
   Compiling regex-automata v0.1.10
   Compiling fs-err v2.11.0
   Compiling regex-automata v0.4.5
   Compiling f4jumble v0.1.0
   Compiling equihash v0.2.0
   Compiling indenter v0.3.3
   Compiling secp256k1-sys v0.8.1
   Compiling crossbeam-deque v0.8.5
   Compiling ring v0.16.20
   Compiling link-cplusplus v1.0.9
   Compiling hashbrown v0.14.3
   Compiling libz-sys v1.1.15
   Compiling lz4-sys v1.9.4
   Compiling cxx v1.0.107
   Compiling which v4.4.2
   Compiling cexpr v0.6.0
   Compiling libgit2-sys v0.16.2+1.7.2
   Compiling metrics v0.22.1
   Compiling http v0.2.11
   Compiling rand_core v0.6.4
   Compiling nanorand v0.7.0
   Compiling backtrace v0.3.69
   Compiling spin v0.9.8
   Compiling syn v2.0.50
   Compiling rand_core v0.5.1
   Compiling unicode-xid v0.2.4
   Compiling wagyu-zcash-parameters-6 v0.2.0
   Compiling wagyu-zcash-parameters-2 v0.2.0
   Compiling clap_lex v0.7.0
   Compiling want v0.3.1
   Compiling wagyu-zcash-parameters-5 v0.2.0
   Compiling indicatif v0.17.8
   Compiling wagyu-zcash-parameters-3 v0.2.0
   Compiling strsim v0.11.0
   Compiling rustc-demangle v0.1.23
   Compiling mset v0.1.1
   Compiling cfg-if v0.1.10
   Compiling parking_lot v0.12.1
   Compiling heck v0.4.1
   Compiling wagyu-zcash-parameters-4 v0.2.0
   Compiling miniz_oxide v0.7.2
   Compiling wagyu-zcash-parameters-1 v0.2.0
   Compiling digest v0.10.7
   Compiling universal-hash v0.5.1
   Compiling aead v0.5.2
   Compiling dirs v5.0.1
   Compiling hex-literal v0.4.1
   Compiling httpdate v1.0.3
   Compiling addr2line v0.21.0
   Compiling idna v0.5.0
   Compiling time v0.3.34
   Compiling owo-colors v3.5.0
   Compiling winnow v0.6.2
   Compiling anstream v0.6.12
   Compiling tracing-log v0.1.4
   Compiling wait-timeout v0.2.0
   Compiling arc-swap v1.6.0
   Compiling canonical-path v2.0.2
   Compiling atty v0.2.14
   Compiling tempfile v3.10.0
   Compiling rand_chacha v0.3.1
   Compiling ff v0.13.0
   Compiling password-hash v0.3.2
   Compiling http-body v0.4.6
   Compiling matchers v0.1.0
   Compiling net2 v0.2.39
   Compiling sha2 v0.10.8
   Compiling regex v1.10.3
   Compiling hmac v0.12.1
   Compiling ripemd v0.1.3
   Compiling rand_chacha v0.2.2
   Compiling parking_lot v0.11.2
   Compiling poly1305 v0.8.0
   Compiling serde_derive v1.0.197
   Compiling zeroize_derive v1.4.2
   Compiling tracing-attributes v0.1.27
   Compiling thiserror-impl v1.0.57
   Compiling tokio-macros v2.2.0
   Compiling futures-macro v0.3.30
   Compiling zeroize v1.7.0
   Compiling tokio v1.36.0
   Compiling pin-project-internal v1.1.4
   Compiling darling_core v0.20.6
   Compiling curve25519-dalek-derive v0.1.1
   Compiling futures-util v0.3.30
   Compiling displaydoc v0.2.4
   Compiling tracing v0.1.40
   Compiling cxx-gen v0.7.117
   Compiling cxxbridge-macro v1.0.107
   Compiling impl-trait-for-tuples v0.2.2
   Compiling metrics-macros v0.7.1
   Compiling quickcheck_macros v0.9.1
   Compiling pin-project v1.1.4
   Compiling metrics v0.21.1
   Compiling rayon v1.8.1
   Compiling synstructure v0.12.6
   Compiling clap_builder v4.5.1
   Compiling url v2.5.0
   Compiling wagyu-zcash-parameters v0.2.0
   Compiling group v0.13.0
   Compiling clap_derive v4.5.0
   Compiling pbkdf2 v0.10.1
   Compiling rand v0.7.3
   Compiling bs58 v0.5.0
   Compiling rand v0.8.5
   Compiling cipher v0.4.4
   Compiling flume v0.10.14
   Compiling tracing-futures v0.2.5
   Compiling darling_macro v0.20.6
   Compiling abscissa_derive v0.7.0
   Compiling darling v0.20.6
   Compiling hex v0.4.3
   Compiling indexmap v2.2.3
   Compiling secp256k1 v0.26.0
   Compiling pairing v0.23.0
   Compiling parity-scale-codec v3.6.9
   Compiling ed25519 v2.2.3
   Compiling chrono v0.4.34
   Compiling futures-executor v0.3.30
   Compiling serde-big-array v0.5.1
   Compiling bitflags-serde-legacy v0.1.1
   Compiling pasta_curves v0.5.1
   Compiling bip0039 v0.10.1
   Compiling fixed-hash v0.7.0
   Compiling maybe-rayon v0.1.1
   Compiling zcash_address v0.3.1
   Compiling chacha20 v0.9.1
   Compiling cbc v0.1.2
   Compiling aes v0.8.4
   Compiling cargo-platform v0.1.7
   Compiling howudoin v0.1.2
   Compiling humantime-serde v1.1.1
   Compiling tokio-util v0.7.10
   Compiling tokio-util v0.6.10
   Compiling globset v0.4.14
   Compiling toml v0.5.11
   Compiling serde_with_macros v3.6.1
   Compiling bincode v1.3.3
   Compiling hyper v0.14.28
   Compiling hdwallet v0.4.1
   Compiling uint v0.9.5
   Compiling bls12_381 v0.8.0
   Compiling bellman v0.14.0
   Compiling toml_datetime v0.6.5
   Compiling serde_spanned v0.6.5
   Compiling clap v4.5.1
   Compiling color-eyre v0.6.2
   Compiling secrecy v0.8.0
   Compiling futures v0.3.30
   Compiling rustc_version v0.4.0
   Compiling librocksdb-sys v0.16.0+8.10.0
   Compiling zcash_script v0.1.14
   Compiling serde_with v3.6.1
   Compiling tracing-subscriber v0.3.18
   Compiling env_logger v0.7.1
   Compiling fpe v0.6.1
   Compiling chacha20poly1305 v0.10.1
   Compiling halo2_proofs v0.3.0
   Compiling cargo_metadata v0.18.1
   Compiling toml_edit v0.22.6
   Compiling tower v0.4.13
   Compiling tokio-stream v0.1.14
   Compiling impl-codec v0.6.0
   Compiling jubjub v0.10.0
   Compiling curve25519-dalek v4.1.2
   Compiling proc-macro-crate v0.1.5
   Compiling jsonrpc-core v18.0.0
   Compiling zcash_note_encryption v0.4.0
   Compiling quickcheck v0.9.2
   Compiling tracing-error v0.2.0
   Compiling tracing-appender v0.2.3
   Compiling abscissa_core v0.7.0
   Compiling primitive-types v0.11.1
   Compiling jsonrpc-derive v18.0.0
   Compiling toml v0.8.10
   Compiling reddsa v0.5.1
   Compiling jsonrpc-server-utils v18.0.0
   Compiling ordered-map v0.4.2
   Compiling ed25519-zebra v4.0.3
   Compiling x25519-dalek v2.0.1
   Compiling halo2_gadgets v0.3.0
   Compiling redjubjub v0.7.0
   Compiling tower-fallback v0.2.41-beta.11
   Compiling tower-batch-control v0.2.41-beta.11
   Compiling jsonrpc-http-server v18.0.0
   Compiling zcash_history v0.3.0
   Compiling git2 v0.18.2
   Compiling orchard v0.6.0
   Compiling zebrad v1.6.0
   Compiling zcash_primitives v0.13.0-rc.1
   Compiling zebra-chain v1.0.0-beta.35
   Compiling zcash_proofs v0.13.0-rc.1
   Compiling zebra-node-services v1.0.0-beta.35
   Compiling zebra-network v1.0.0-beta.35
   Compiling rocksdb v0.22.0
   Compiling zebra-state v1.0.0-beta.35
   Compiling zebra-script v1.0.0-beta.35
   Compiling zebra-consensus v1.0.0-beta.35
   Compiling zebra-rpc v1.0.0-beta.35
    Finished release [optimized] target(s) in 2m 14s
   Replacing /.../.cargo/bin/zebrad
    Replaced package `zebrad v1.5.2` with `zebrad v1.6.0` (executable `zebrad`)

@upbqdn
Copy link
Member Author

upbqdn commented Feb 26, 2024

The release is finished. Zebra 1.6.0 runs well on my machine.

idky137 pushed a commit to idky137/zebra that referenced this pull request Feb 28, 2024
* Prepare the CHANGELOG for v1.6.0

* chore: Release

* Set `ESTIMATED_RELEASE_HEIGHT` to 2_413_000

* Revert "chore: Release"

This reverts commit 5261e85.

* chore: Release

* Fix release-crates-dry-run

* Temporarily turn off bumps for `zebra-{scan,grpc}`

* Apply suggestions from code review

Co-authored-by: Arya <[email protected]>

* Re-enable test bump for `zebra-scan`

* Re-enable test bumps for `zebra-{scan, grpc}`

* Turn off dry-run bumps for `zebra-{scan, grpc}`

* Re-enable bumps and disable dry-run publishing

* Re-enable dry-run publishing

* Exclude `zebra-scan` from publishing

---------

Co-authored-by: Arya <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-release Area: Zebra releases and release management C-trivial Category: A trivial change that is not worth mentioning in the CHANGELOG P-Critical 🚑
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Publish next Zebra release: 1.6.0
2 participants