Skip to content

Commit

Permalink
chore: deprecate upgrade standards implementation (#856)
Browse files Browse the repository at this point in the history
  • Loading branch information
austinabell authored Jul 1, 2022
1 parent 6d40452 commit 41eb838
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## [Unreleased]

### Removed
- Deprecated `near_contract_standards::upgrade`. [PR 856](https://github.com/near/near-sdk-rs/pull/856)
- Implementation did not match any NEAR standard and was not correct


## [4.0.0] - 2022-05-25

Expand Down
4 changes: 4 additions & 0 deletions near-contract-standards/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ pub mod non_fungible_token;
pub mod storage_management;
/// This upgrade standard is a use case where a staging area exists for a WASM
/// blob, allowing it to be stored for a period of time before deployed.
#[deprecated(
since = "4.1.0",
note = "This was removed because there is no standard (NEP) for upgradable contracts."
)]
pub mod upgrade;

pub(crate) mod event;

0 comments on commit 41eb838

Please sign in to comment.