Skip to content

Commit

Permalink
docs: roll v4.0.2
Browse files Browse the repository at this point in the history
test: update precompiles
  • Loading branch information
PaulRBerg committed Dec 28, 2023
1 parent adf815c commit a12c7b5
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 4 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,29 @@ All notable changes to this project will be documented in this file.
The format is based on [Common Changelog](https://common-changelog.org/), and this project adheres to
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).

[4.0.2]: https://github.com/PaulRBerg/prb-proxy/compare/v4.0.1...v4.0.2
[4.0.1]: https://github.com/PaulRBerg/prb-proxy/compare/v4.0.0...v4.0.1
[4.0.0]: https://github.com/PaulRBerg/prb-proxy/compare/v2.0.0...v4.0.0
[2.0.0]: https://github.com/PaulRBerg/prb-proxy/compare/v1.0.1...v2.0.0
[1.0.1]: https://github.com/PaulRBerg/prb-proxy/compare/v1.0.0...v1.0.1
[1.0.0]: https://github.com/PaulRBerg/prb-proxy/releases/tag/v1.0.0

## [4.0.2] - 2023-12-28

### Changed

- Install `prb-test` and `forge-std` as Node.js packages ([#179](https://github.com/PaulRBerg/prb-proxy/pull/179)) (@andreivladbrg, @PaulRBerg)
- Update import paths to include `src` ([#179](https://github.com/PaulRBerg/prb-proxy/pull/179)) (@PaulRBerg)
- Make Node.js the default installation option (@PaulRBerg)

### Added

- Include `test/utils` in Node.js package ([#179](https://github.com/PaulRBerg/prb-proxy/pull/179)) (@andreivladbrg, @PaulRBerg)

### Removed

- Remove git submodules ([#211](https://github.com/PaulRBerg/prb-math/pull/211)) (@andreivladbrg, @PaulRBerg)

## [4.0.1] - 2023-07-10

### Changed
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@prb/proxy",
"description": "Proxy contract to compose Ethereum transactions on behalf of the owner",
"version": "4.0.1",
"version": "4.0.2",
"author": {
"name": "Paul Razvan Berg",
"url": "https://github.com/PaulRBerg"
Expand Down
2 changes: 1 addition & 1 deletion src/PRBProxyRegistry.sol
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ contract PRBProxyRegistry is IPRBProxyRegistry {
//////////////////////////////////////////////////////////////////////////*/

/// @inheritdoc IPRBProxyRegistry
string public constant override VERSION = "4.0.1";
string public constant override VERSION = "4.0.2";

/*//////////////////////////////////////////////////////////////////////////
USER-FACING STORAGE
Expand Down
2 changes: 1 addition & 1 deletion test/registry/version/version.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Registry_Test } from "../Registry.t.sol";
contract Version_Test is Registry_Test {
function test_Version() external {
string memory actualVersion = registry.VERSION();
string memory expectedVersion = "4.0.1";
string memory expectedVersion = "4.0.2";
assertEq(actualVersion, expectedVersion, "registry version mismatch");
}
}
Loading

0 comments on commit a12c7b5

Please sign in to comment.