Skip to content

Commit dca75ce

Browse files
chore: release
1 parent a47d3e5 commit dca75ce

File tree

9 files changed

+691
-0
lines changed

9 files changed

+691
-0
lines changed

crates/bytecode/CHANGELOG.md

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [1.0.0](https://github.com/bluealloy/revm/releases/tag/revm-bytecode-v1.0.0) - 2024-10-02
11+
12+
### Added
13+
14+
- Merge validation/analyzis with Bytecode ([#1793](https://github.com/bluealloy/revm/pull/1793))
15+
- restructure Part2 database crate ([#1784](https://github.com/bluealloy/revm/pull/1784))
16+
- project restructuring Part1 ([#1776](https://github.com/bluealloy/revm/pull/1776))
17+
- *(examples)* generate block traces ([#895](https://github.com/bluealloy/revm/pull/895))
18+
- implement EIP-4844 ([#668](https://github.com/bluealloy/revm/pull/668))
19+
- *(Shanghai)* All EIPs: push0, warm coinbase, limit/measure initcode ([#376](https://github.com/bluealloy/revm/pull/376))
20+
- Migrate `primitive_types::U256` to `ruint::Uint<256, 4>` ([#239](https://github.com/bluealloy/revm/pull/239))
21+
- Introduce ByteCode format, Update Readme ([#156](https://github.com/bluealloy/revm/pull/156))
22+
23+
### Fixed
24+
25+
- fix typos ([#620](https://github.com/bluealloy/revm/pull/620))
26+
27+
### Other
28+
29+
- fix `constants` module typo ([#1801](https://github.com/bluealloy/revm/pull/1801))
30+
- Bump new logo ([#1735](https://github.com/bluealloy/revm/pull/1735))
31+
- *(README)* add rbuilder to used-by ([#1585](https://github.com/bluealloy/revm/pull/1585))
32+
- added simular to used-by ([#1521](https://github.com/bluealloy/revm/pull/1521))
33+
- add Trin to used by list ([#1393](https://github.com/bluealloy/revm/pull/1393))
34+
- Fix typo in readme ([#1185](https://github.com/bluealloy/revm/pull/1185))
35+
- Add Hardhat to the "Used by" list ([#1164](https://github.com/bluealloy/revm/pull/1164))
36+
- Add VERBS to used by list ([#1141](https://github.com/bluealloy/revm/pull/1141))
37+
- license date and revm docs ([#1080](https://github.com/bluealloy/revm/pull/1080))
38+
- *(docs)* Update the benchmark docs to point to revm package ([#906](https://github.com/bluealloy/revm/pull/906))
39+
- *(docs)* Update top-level benchmark docs ([#894](https://github.com/bluealloy/revm/pull/894))
40+
- clang requirement ([#784](https://github.com/bluealloy/revm/pull/784))
41+
- Readme Updates ([#756](https://github.com/bluealloy/revm/pull/756))
42+
- Logo ([#743](https://github.com/bluealloy/revm/pull/743))
43+
- book workflow ([#537](https://github.com/bluealloy/revm/pull/537))
44+
- add example to revm crate ([#468](https://github.com/bluealloy/revm/pull/468))
45+
- Update README.md ([#424](https://github.com/bluealloy/revm/pull/424))
46+
- add no_std to primitives ([#366](https://github.com/bluealloy/revm/pull/366))
47+
- revm-precompiles to revm-precompile
48+
- Bump v20, changelog ([#350](https://github.com/bluealloy/revm/pull/350))
49+
- typos ([#232](https://github.com/bluealloy/revm/pull/232))
50+
- Add support for old forks. ([#191](https://github.com/bluealloy/revm/pull/191))
51+
- revm bump 1.8. update libs. snailtracer rename ([#159](https://github.com/bluealloy/revm/pull/159))
52+
- typo fixes
53+
- fix readme typo
54+
- Big Refactor. Machine to Interpreter. refactor instructions. call/create struct ([#52](https://github.com/bluealloy/revm/pull/52))
55+
- readme. debuger update
56+
- Bump revm v0.3.0. README updated
57+
- readme
58+
- Add time elapsed for tests
59+
- readme updated
60+
- Include Basefee into cost calc. readme change
61+
- Initialize precompile accounts
62+
- Status update. Taking a break
63+
- Merkle calc. Tweaks and debugging for eip158
64+
- Replace aurora bn lib with parity's. All Bn128Add/Mul/Pair tests passes
65+
- TEMP
66+
- one tab removed
67+
- readme
68+
- README Example simplified
69+
- Gas calculation for Call/Create. Example Added
70+
- readme usage
71+
- README changes
72+
- Static gas cost added
73+
- Subroutine changelogs and reverts
74+
- Readme postulates
75+
- Spelling
76+
- Restructure project
77+
- First iteration. Machine is looking okay

crates/database/CHANGELOG.md

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [1.0.0](https://github.com/bluealloy/revm/releases/tag/revm-database-v1.0.0) - 2024-10-02
11+
12+
### Added
13+
14+
- add support for async database ([#1809](https://github.com/bluealloy/revm/pull/1809))
15+
- restructure Part2 database crate ([#1784](https://github.com/bluealloy/revm/pull/1784))
16+
- *(examples)* generate block traces ([#895](https://github.com/bluealloy/revm/pull/895))
17+
- implement EIP-4844 ([#668](https://github.com/bluealloy/revm/pull/668))
18+
- *(Shanghai)* All EIPs: push0, warm coinbase, limit/measure initcode ([#376](https://github.com/bluealloy/revm/pull/376))
19+
- Migrate `primitive_types::U256` to `ruint::Uint<256, 4>` ([#239](https://github.com/bluealloy/revm/pull/239))
20+
- Introduce ByteCode format, Update Readme ([#156](https://github.com/bluealloy/revm/pull/156))
21+
22+
### Fixed
23+
24+
- fix typos ([#620](https://github.com/bluealloy/revm/pull/620))
25+
26+
### Other
27+
28+
- *(primitives)* replace HashMap re-exports with alloy_primitives::map ([#1805](https://github.com/bluealloy/revm/pull/1805))
29+
- Bump new logo ([#1735](https://github.com/bluealloy/revm/pull/1735))
30+
- *(README)* add rbuilder to used-by ([#1585](https://github.com/bluealloy/revm/pull/1585))
31+
- added simular to used-by ([#1521](https://github.com/bluealloy/revm/pull/1521))
32+
- add Trin to used by list ([#1393](https://github.com/bluealloy/revm/pull/1393))
33+
- Fix typo in readme ([#1185](https://github.com/bluealloy/revm/pull/1185))
34+
- Add Hardhat to the "Used by" list ([#1164](https://github.com/bluealloy/revm/pull/1164))
35+
- Add VERBS to used by list ([#1141](https://github.com/bluealloy/revm/pull/1141))
36+
- license date and revm docs ([#1080](https://github.com/bluealloy/revm/pull/1080))
37+
- *(docs)* Update the benchmark docs to point to revm package ([#906](https://github.com/bluealloy/revm/pull/906))
38+
- *(docs)* Update top-level benchmark docs ([#894](https://github.com/bluealloy/revm/pull/894))
39+
- clang requirement ([#784](https://github.com/bluealloy/revm/pull/784))
40+
- Readme Updates ([#756](https://github.com/bluealloy/revm/pull/756))
41+
- Logo ([#743](https://github.com/bluealloy/revm/pull/743))
42+
- book workflow ([#537](https://github.com/bluealloy/revm/pull/537))
43+
- add example to revm crate ([#468](https://github.com/bluealloy/revm/pull/468))
44+
- Update README.md ([#424](https://github.com/bluealloy/revm/pull/424))
45+
- add no_std to primitives ([#366](https://github.com/bluealloy/revm/pull/366))
46+
- revm-precompiles to revm-precompile
47+
- Bump v20, changelog ([#350](https://github.com/bluealloy/revm/pull/350))
48+
- typos ([#232](https://github.com/bluealloy/revm/pull/232))
49+
- Add support for old forks. ([#191](https://github.com/bluealloy/revm/pull/191))
50+
- revm bump 1.8. update libs. snailtracer rename ([#159](https://github.com/bluealloy/revm/pull/159))
51+
- typo fixes
52+
- fix readme typo
53+
- Big Refactor. Machine to Interpreter. refactor instructions. call/create struct ([#52](https://github.com/bluealloy/revm/pull/52))
54+
- readme. debuger update
55+
- Bump revm v0.3.0. README updated
56+
- readme
57+
- Add time elapsed for tests
58+
- readme updated
59+
- Include Basefee into cost calc. readme change
60+
- Initialize precompile accounts
61+
- Status update. Taking a break
62+
- Merkle calc. Tweaks and debugging for eip158
63+
- Replace aurora bn lib with parity's. All Bn128Add/Mul/Pair tests passes
64+
- TEMP
65+
- one tab removed
66+
- readme
67+
- README Example simplified
68+
- Gas calculation for Call/Create. Example Added
69+
- readme usage
70+
- README changes
71+
- Static gas cost added
72+
- Subroutine changelogs and reverts
73+
- Readme postulates
74+
- Spelling
75+
- Restructure project
76+
- First iteration. Machine is looking okay
Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [1.0.0](https://github.com/bluealloy/revm/releases/tag/revm-database-interface-v1.0.0) - 2024-10-02
11+
12+
### Added
13+
14+
- add support for async database ([#1809](https://github.com/bluealloy/revm/pull/1809))
15+
- restructure Part2 database crate ([#1784](https://github.com/bluealloy/revm/pull/1784))
16+
- project restructuring Part1 ([#1776](https://github.com/bluealloy/revm/pull/1776))
17+
- *(examples)* generate block traces ([#895](https://github.com/bluealloy/revm/pull/895))
18+
- implement EIP-4844 ([#668](https://github.com/bluealloy/revm/pull/668))
19+
- *(Shanghai)* All EIPs: push0, warm coinbase, limit/measure initcode ([#376](https://github.com/bluealloy/revm/pull/376))
20+
- Migrate `primitive_types::U256` to `ruint::Uint<256, 4>` ([#239](https://github.com/bluealloy/revm/pull/239))
21+
- Introduce ByteCode format, Update Readme ([#156](https://github.com/bluealloy/revm/pull/156))
22+
23+
### Fixed
24+
25+
- fix typos ([#620](https://github.com/bluealloy/revm/pull/620))
26+
27+
### Other
28+
29+
- Bump new logo ([#1735](https://github.com/bluealloy/revm/pull/1735))
30+
- *(README)* add rbuilder to used-by ([#1585](https://github.com/bluealloy/revm/pull/1585))
31+
- added simular to used-by ([#1521](https://github.com/bluealloy/revm/pull/1521))
32+
- add Trin to used by list ([#1393](https://github.com/bluealloy/revm/pull/1393))
33+
- Fix typo in readme ([#1185](https://github.com/bluealloy/revm/pull/1185))
34+
- Add Hardhat to the "Used by" list ([#1164](https://github.com/bluealloy/revm/pull/1164))
35+
- Add VERBS to used by list ([#1141](https://github.com/bluealloy/revm/pull/1141))
36+
- license date and revm docs ([#1080](https://github.com/bluealloy/revm/pull/1080))
37+
- *(docs)* Update the benchmark docs to point to revm package ([#906](https://github.com/bluealloy/revm/pull/906))
38+
- *(docs)* Update top-level benchmark docs ([#894](https://github.com/bluealloy/revm/pull/894))
39+
- clang requirement ([#784](https://github.com/bluealloy/revm/pull/784))
40+
- Readme Updates ([#756](https://github.com/bluealloy/revm/pull/756))
41+
- Logo ([#743](https://github.com/bluealloy/revm/pull/743))
42+
- book workflow ([#537](https://github.com/bluealloy/revm/pull/537))
43+
- add example to revm crate ([#468](https://github.com/bluealloy/revm/pull/468))
44+
- Update README.md ([#424](https://github.com/bluealloy/revm/pull/424))
45+
- add no_std to primitives ([#366](https://github.com/bluealloy/revm/pull/366))
46+
- revm-precompiles to revm-precompile
47+
- Bump v20, changelog ([#350](https://github.com/bluealloy/revm/pull/350))
48+
- typos ([#232](https://github.com/bluealloy/revm/pull/232))
49+
- Add support for old forks. ([#191](https://github.com/bluealloy/revm/pull/191))
50+
- revm bump 1.8. update libs. snailtracer rename ([#159](https://github.com/bluealloy/revm/pull/159))
51+
- typo fixes
52+
- fix readme typo
53+
- Big Refactor. Machine to Interpreter. refactor instructions. call/create struct ([#52](https://github.com/bluealloy/revm/pull/52))
54+
- readme. debuger update
55+
- Bump revm v0.3.0. README updated
56+
- readme
57+
- Add time elapsed for tests
58+
- readme updated
59+
- Include Basefee into cost calc. readme change
60+
- Initialize precompile accounts
61+
- Status update. Taking a break
62+
- Merkle calc. Tweaks and debugging for eip158
63+
- Replace aurora bn lib with parity's. All Bn128Add/Mul/Pair tests passes
64+
- TEMP
65+
- one tab removed
66+
- readme
67+
- README Example simplified
68+
- Gas calculation for Call/Create. Example Added
69+
- readme usage
70+
- README changes
71+
- Static gas cost added
72+
- Subroutine changelogs and reverts
73+
- Readme postulates
74+
- Spelling
75+
- Restructure project
76+
- First iteration. Machine is looking okay

crates/inspector/CHANGELOG.md

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [1.0.0](https://github.com/bluealloy/revm/releases/tag/revm-inspector-v1.0.0) - 2024-10-02
11+
12+
### Added
13+
14+
- Merge validation/analyzis with Bytecode ([#1793](https://github.com/bluealloy/revm/pull/1793))
15+
- Restructuring Part3 inspector crate ([#1788](https://github.com/bluealloy/revm/pull/1788))
16+
- restructure Part2 database crate ([#1784](https://github.com/bluealloy/revm/pull/1784))
17+
- project restructuring Part1 ([#1776](https://github.com/bluealloy/revm/pull/1776))
18+
- *(examples)* generate block traces ([#895](https://github.com/bluealloy/revm/pull/895))
19+
- implement EIP-4844 ([#668](https://github.com/bluealloy/revm/pull/668))
20+
- *(Shanghai)* All EIPs: push0, warm coinbase, limit/measure initcode ([#376](https://github.com/bluealloy/revm/pull/376))
21+
- Migrate `primitive_types::U256` to `ruint::Uint<256, 4>` ([#239](https://github.com/bluealloy/revm/pull/239))
22+
- Introduce ByteCode format, Update Readme ([#156](https://github.com/bluealloy/revm/pull/156))
23+
24+
### Fixed
25+
26+
- fix typos ([#620](https://github.com/bluealloy/revm/pull/620))
27+
28+
### Other
29+
30+
- Bump new logo ([#1735](https://github.com/bluealloy/revm/pull/1735))
31+
- *(README)* add rbuilder to used-by ([#1585](https://github.com/bluealloy/revm/pull/1585))
32+
- added simular to used-by ([#1521](https://github.com/bluealloy/revm/pull/1521))
33+
- add Trin to used by list ([#1393](https://github.com/bluealloy/revm/pull/1393))
34+
- Fix typo in readme ([#1185](https://github.com/bluealloy/revm/pull/1185))
35+
- Add Hardhat to the "Used by" list ([#1164](https://github.com/bluealloy/revm/pull/1164))
36+
- Add VERBS to used by list ([#1141](https://github.com/bluealloy/revm/pull/1141))
37+
- license date and revm docs ([#1080](https://github.com/bluealloy/revm/pull/1080))
38+
- *(docs)* Update the benchmark docs to point to revm package ([#906](https://github.com/bluealloy/revm/pull/906))
39+
- *(docs)* Update top-level benchmark docs ([#894](https://github.com/bluealloy/revm/pull/894))
40+
- clang requirement ([#784](https://github.com/bluealloy/revm/pull/784))
41+
- Readme Updates ([#756](https://github.com/bluealloy/revm/pull/756))
42+
- Logo ([#743](https://github.com/bluealloy/revm/pull/743))
43+
- book workflow ([#537](https://github.com/bluealloy/revm/pull/537))
44+
- add example to revm crate ([#468](https://github.com/bluealloy/revm/pull/468))
45+
- Update README.md ([#424](https://github.com/bluealloy/revm/pull/424))
46+
- add no_std to primitives ([#366](https://github.com/bluealloy/revm/pull/366))
47+
- revm-precompiles to revm-precompile
48+
- Bump v20, changelog ([#350](https://github.com/bluealloy/revm/pull/350))
49+
- typos ([#232](https://github.com/bluealloy/revm/pull/232))
50+
- Add support for old forks. ([#191](https://github.com/bluealloy/revm/pull/191))
51+
- revm bump 1.8. update libs. snailtracer rename ([#159](https://github.com/bluealloy/revm/pull/159))
52+
- typo fixes
53+
- fix readme typo
54+
- Big Refactor. Machine to Interpreter. refactor instructions. call/create struct ([#52](https://github.com/bluealloy/revm/pull/52))
55+
- readme. debuger update
56+
- Bump revm v0.3.0. README updated
57+
- readme
58+
- Add time elapsed for tests
59+
- readme updated
60+
- Include Basefee into cost calc. readme change
61+
- Initialize precompile accounts
62+
- Status update. Taking a break
63+
- Merkle calc. Tweaks and debugging for eip158
64+
- Replace aurora bn lib with parity's. All Bn128Add/Mul/Pair tests passes
65+
- TEMP
66+
- one tab removed
67+
- readme
68+
- README Example simplified
69+
- Gas calculation for Call/Create. Example Added
70+
- readme usage
71+
- README changes
72+
- Static gas cost added
73+
- Subroutine changelogs and reverts
74+
- Readme postulates
75+
- Spelling
76+
- Restructure project
77+
- First iteration. Machine is looking okay

crates/optimism/CHANGELOG.md

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [1.0.0](https://github.com/bluealloy/revm/releases/tag/revm-optimism-v1.0.0) - 2024-10-02
11+
12+
### Added
13+
14+
- Restructuring Part3 inspector crate ([#1788](https://github.com/bluealloy/revm/pull/1788))
15+
- restructure Part2 database crate ([#1784](https://github.com/bluealloy/revm/pull/1784))
16+
- project restructuring Part1 ([#1776](https://github.com/bluealloy/revm/pull/1776))
17+
- introducing EvmWiring, a chain-specific configuration ([#1672](https://github.com/bluealloy/revm/pull/1672))
18+
- *(examples)* generate block traces ([#895](https://github.com/bluealloy/revm/pull/895))
19+
- implement EIP-4844 ([#668](https://github.com/bluealloy/revm/pull/668))
20+
- *(Shanghai)* All EIPs: push0, warm coinbase, limit/measure initcode ([#376](https://github.com/bluealloy/revm/pull/376))
21+
- Migrate `primitive_types::U256` to `ruint::Uint<256, 4>` ([#239](https://github.com/bluealloy/revm/pull/239))
22+
- Introduce ByteCode format, Update Readme ([#156](https://github.com/bluealloy/revm/pull/156))
23+
24+
### Fixed
25+
26+
- make macro crate-agnostic ([#1802](https://github.com/bluealloy/revm/pull/1802))
27+
- fix typos ([#620](https://github.com/bluealloy/revm/pull/620))
28+
29+
### Other
30+
31+
- *(primitives)* replace HashMap re-exports with alloy_primitives::map ([#1805](https://github.com/bluealloy/revm/pull/1805))
32+
- Test for l1 gas used and l1 fee for ecotone tx ([#1748](https://github.com/bluealloy/revm/pull/1748))
33+
- *(deps)* bump anyhow from 1.0.88 to 1.0.89 ([#1772](https://github.com/bluealloy/revm/pull/1772))
34+
- Bump new logo ([#1735](https://github.com/bluealloy/revm/pull/1735))
35+
- *(README)* add rbuilder to used-by ([#1585](https://github.com/bluealloy/revm/pull/1585))
36+
- added simular to used-by ([#1521](https://github.com/bluealloy/revm/pull/1521))
37+
- add Trin to used by list ([#1393](https://github.com/bluealloy/revm/pull/1393))
38+
- Fix typo in readme ([#1185](https://github.com/bluealloy/revm/pull/1185))
39+
- Add Hardhat to the "Used by" list ([#1164](https://github.com/bluealloy/revm/pull/1164))
40+
- Add VERBS to used by list ([#1141](https://github.com/bluealloy/revm/pull/1141))
41+
- license date and revm docs ([#1080](https://github.com/bluealloy/revm/pull/1080))
42+
- *(docs)* Update the benchmark docs to point to revm package ([#906](https://github.com/bluealloy/revm/pull/906))
43+
- *(docs)* Update top-level benchmark docs ([#894](https://github.com/bluealloy/revm/pull/894))
44+
- clang requirement ([#784](https://github.com/bluealloy/revm/pull/784))
45+
- Readme Updates ([#756](https://github.com/bluealloy/revm/pull/756))
46+
- Logo ([#743](https://github.com/bluealloy/revm/pull/743))
47+
- book workflow ([#537](https://github.com/bluealloy/revm/pull/537))
48+
- add example to revm crate ([#468](https://github.com/bluealloy/revm/pull/468))
49+
- Update README.md ([#424](https://github.com/bluealloy/revm/pull/424))
50+
- add no_std to primitives ([#366](https://github.com/bluealloy/revm/pull/366))
51+
- revm-precompiles to revm-precompile
52+
- Bump v20, changelog ([#350](https://github.com/bluealloy/revm/pull/350))
53+
- typos ([#232](https://github.com/bluealloy/revm/pull/232))
54+
- Add support for old forks. ([#191](https://github.com/bluealloy/revm/pull/191))
55+
- revm bump 1.8. update libs. snailtracer rename ([#159](https://github.com/bluealloy/revm/pull/159))
56+
- typo fixes
57+
- fix readme typo
58+
- Big Refactor. Machine to Interpreter. refactor instructions. call/create struct ([#52](https://github.com/bluealloy/revm/pull/52))
59+
- readme. debuger update
60+
- Bump revm v0.3.0. README updated
61+
- readme
62+
- Add time elapsed for tests
63+
- readme updated
64+
- Include Basefee into cost calc. readme change
65+
- Initialize precompile accounts
66+
- Status update. Taking a break
67+
- Merkle calc. Tweaks and debugging for eip158
68+
- Replace aurora bn lib with parity's. All Bn128Add/Mul/Pair tests passes
69+
- TEMP
70+
- one tab removed
71+
- readme
72+
- README Example simplified
73+
- Gas calculation for Call/Create. Example Added
74+
- readme usage
75+
- README changes
76+
- Static gas cost added
77+
- Subroutine changelogs and reverts
78+
- Readme postulates
79+
- Spelling
80+
- Restructure project
81+
- First iteration. Machine is looking okay

0 commit comments

Comments
 (0)