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 v0.4.0 #24

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Conversation

frol
Copy link
Contributor

@frol frol commented Dec 3, 2024

🤖 New release

  • near-api: 0.3.0 -> 0.4.0 (⚠️ API breaking changes)

⚠️ near-api breaking changes

--- failure enum_missing: pub enum removed or renamed ---

Description:
A publicly-visible enum cannot be imported by its prior path. A `pub use` may have been removed, or the enum itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.37.0/src/lints/enum_missing.ron

Failed in:
  enum near_api::prelude::Reference, previously in file /tmp/.tmpxdiHUz/near-api/src/types/reference.rs:10
  enum near_api::prelude::EpochReference, previously in file /tmp/.tmpxdiHUz/near-api/src/types/reference.rs:43

--- failure enum_variant_added: enum variant added on exhaustive enum ---

Description:
A publicly-visible enum without #[non_exhaustive] has a new variant.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#enum-variant-new
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.37.0/src/lints/enum_variant_added.ron

Failed in:
  variant ExecuteTransactionError:TransactionError in /tmp/.tmpJbTQp1/near-api-rs/src/errors.rs:196

--- failure enum_variant_missing: pub enum variant removed or renamed ---

Description:
A publicly-visible enum has at least one variant that is no longer available under its prior name. It may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.37.0/src/lints/enum_variant_missing.ron

Failed in:
  variant ExecuteTransactionError::RetriesExhausted, previously in file /tmp/.tmpxdiHUz/near-api/src/errors.rs:186

--- failure module_missing: pub module removed or renamed ---

Description:
A publicly-visible module cannot be imported by its prior path. A `pub use` may have been removed, or the module may have been renamed, removed, or made non-public.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.37.0/src/lints/module_missing.ron

Failed in:
  mod near_api::prelude, previously in file /tmp/.tmpxdiHUz/near-api/src/lib.rs:17

--- failure pub_module_level_const_missing: pub module-level const is missing ---

Description:
A public const is missing, renamed, or changed from const to static.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.37.0/src/lints/pub_module_level_const_missing.ron

Failed in:
  USDT_BALANCE in file /tmp/.tmpxdiHUz/near-api/src/types/tokens.rs:6
  W_NEAR_BALANCE in file /tmp/.tmpxdiHUz/near-api/src/types/tokens.rs:8

--- failure struct_missing: pub struct removed or renamed ---

Description:
A publicly-visible struct cannot be imported by its prior path. A `pub use` may have been removed, or the struct itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.37.0/src/lints/struct_missing.ron

Failed in:
  struct near_api::prelude::NetworkConfig, previously in file /tmp/.tmpxdiHUz/near-api/src/config.rs:2
  struct near_api::prelude::FastNear, previously in file /tmp/.tmpxdiHUz/near-api/src/fastnear.rs:63
  struct near_api::prelude::Delegation, previously in file /tmp/.tmpxdiHUz/near-api/src/stake.rs:30
  struct near_api::prelude::Tokens, previously in file /tmp/.tmpxdiHUz/near-api/src/tokens.rs:38
  struct near_api::prelude::Data, previously in file /tmp/.tmpxdiHUz/near-api/src/types/mod.rs:23
  struct near_api::prelude::FTBalance, previously in file /tmp/.tmpxdiHUz/near-api/src/types/tokens.rs:11
  struct near_api::prelude::Transaction, previously in file /tmp/.tmpxdiHUz/near-api/src/transactions.rs:71
  struct near_api::prelude::Staking, previously in file /tmp/.tmpxdiHUz/near-api/src/stake.rs:250
  struct near_api::prelude::Signer, previously in file /tmp/.tmpxdiHUz/near-api/src/signer/mod.rs:91
  struct near_api::prelude::Contract, previously in file /tmp/.tmpxdiHUz/near-api/src/contract.rs:27
  struct near_api::prelude::StorageDeposit, previously in file /tmp/.tmpxdiHUz/near-api/src/storage.rs:14
  struct near_api::prelude::Account, previously in file /tmp/.tmpxdiHUz/near-api/src/account/mod.rs:24
  struct near_api::prelude::Chain, previously in file /tmp/.tmpxdiHUz/near-api/src/chain.rs:12

--- failure trait_missing: pub trait removed or renamed ---

Description:
A publicly-visible trait cannot be imported by its prior path. A `pub use` may have been removed, or the trait itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.37.0/src/lints/trait_missing.ron

Failed in:
  trait near_api::prelude::SignerTrait, previously in file /tmp/.tmpxdiHUz/near-api/src/signer/mod.rs:52
Changelog

0.4.0 - 2024-12-09

Added

Other


This PR was generated with release-plz.

@frol frol force-pushed the release-plz-2024-12-03T14-21-18Z branch 3 times, most recently from 037d227 to 0ccdfd8 Compare December 6, 2024 13:50
@frol frol force-pushed the release-plz-2024-12-03T14-21-18Z branch from 0ccdfd8 to 187d509 Compare December 9, 2024 16:06
@frol
Copy link
Contributor Author

frol commented Dec 10, 2024

@race-of-sloths include my pr

@race-of-sloths
Copy link

@frol Thank you for your contribution! Your pull request is now a part of the Race of Sloths!
You are true leader! Other sloths hot on your heels, keep moving!

Shows inviting banner with latest news.

Shows profile picture for the author of the PR

Current status: waiting for scoring

We're waiting for maintainer to score this pull request with @race-of-sloths score [0,1,2,3,5,8,13] command. Alternatively, autoscoring [1,2] will be applied for this pull request

What is the Race of Sloths

Race of Sloths is a friendly competition where you can participate in challenges and compete with other open-source contributors within your normal workflow

For contributors:

  • Tag @race-of-sloths inside your pull requests
  • Wait for the maintainer to review and score your pull request
  • Check out your position in the Leaderboard
  • Keep weekly and monthly streaks to reach higher positions
  • Boast your contributions with a dynamic picture of your Profile

For maintainers:

  • Score pull requests that participate in the Race of Sloths and receive a reward
  • Engage contributors with fair scoring and fast responses so they keep their streaks
  • Promote the Race to the point where the Race starts promoting you
  • Grow the community of your contributors

Feel free to check our website for additional details!

Bot commands
  • For contributors
    • Include a PR: @race-of-sloths include to enter the Race with your PR
  • For maintainers:
    • Invite contributor @race-of-sloths invite to invite the contributor to participate in a race or include it, if it's already a runner.
    • Assign points: @race-of-sloths score [1/2/3/5/8/13] to award points based on your assessment.
    • Reject this PR: @race-of-sloths exclude to send this PR back to the drawing board.
    • Exclude repo: @race-of-sloths pause to stop bot activity in this repo until @race-of-sloths unpause command is called

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants