Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions scripts/upgradeable/upgradeable.patch
Original file line number Diff line number Diff line change
Expand Up @@ -59,20 +59,20 @@ index ff596b0c3..000000000
-<!-- Make sure that you have reviewed the OpenZeppelin Contracts Contributor Guidelines. -->
-<!-- https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/CONTRIBUTING.md -->
diff --git a/README.md b/README.md
index 2f92281b3..a0e46695d 100644
index 4d647093d..d7201d490 100644
--- a/README.md
+++ b/README.md
@@ -20,6 +20,9 @@
@@ -18,6 +18,9 @@
> [!IMPORTANT]
> OpenZeppelin Contracts uses semantic versioning to communicate backwards compatibility of its API and storage layout. For upgradeable contracts, the storage layout of different major versions should be assumed incompatible, for example, it is unsafe to upgrade from 4.9.3 to 5.0.0. Learn more at [Backwards Compatibility](https://docs.openzeppelin.com/contracts/backwards-compatibility).

++> [!NOTE]
++> You are looking at the upgradeable variant of OpenZeppelin Contracts. Be sure to review the documentation on [Using OpenZeppelin Contracts with Upgrades](https://docs.openzeppelin.com/contracts/upgradeable).
++
+> [!NOTE]
+> You are looking at the upgradeable variant of OpenZeppelin Contracts. Be sure to review the documentation on [Using OpenZeppelin Contracts with Upgrades](https://docs.openzeppelin.com/contracts/upgradeable).
+
Comment on lines +69 to +71
Copy link
Collaborator Author

Choose a reason for hiding this comment

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

This is where the change is: change from ++ to +. Having ++ means the second + is added to the Readme.

## Overview

### Installation
@@ -27,7 +30,7 @@
@@ -25,7 +28,7 @@
#### Hardhat (npm)

```
Expand All @@ -81,7 +81,7 @@ index 2f92281b3..a0e46695d 100644
```

#### Foundry (git)
@@ -39,10 +42,10 @@ $ npm install @openzeppelin/contracts
@@ -37,10 +40,10 @@ $ npm install @openzeppelin/contracts
> Foundry installs the latest version initially, but subsequent `forge update` commands will use the `master` branch.

```
Expand All @@ -94,7 +94,7 @@ index 2f92281b3..a0e46695d 100644

### Usage

@@ -51,10 +54,11 @@ Once installed, you can use the contracts in the library by importing them:
@@ -49,10 +52,11 @@ Once installed, you can use the contracts in the library by importing them:
```solidity
pragma solidity ^0.8.20;

Expand Down Expand Up @@ -341,7 +341,7 @@ index 0eaef9d27..01f1b5f58 100644
}
}
diff --git a/package.json b/package.json
index f6960972a..369e2e1e6 100644
index c01775bd9..0443c125a 100644
--- a/package.json
+++ b/package.json
@@ -35,7 +35,7 @@
Expand Down
Loading