Skip to content

Commit dc2bd84

Browse files
chore: version packages (#59)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 5f79243 commit dc2bd84

File tree

4 files changed

+61
-63
lines changed

4 files changed

+61
-63
lines changed

.changeset/giant-knives-rhyme.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/lazy-toys-report.md

Lines changed: 0 additions & 57 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,65 @@
11
# prool
22

3+
## 0.1.0
4+
5+
### Minor Changes
6+
7+
- [#58](https://github.com/wevm/prool/pull/58) [`5f79243`](https://github.com/wevm/prool/commit/5f792438e4977116725252b105e8b75cfb3a3ba1) Thanks [@jxom](https://github.com/jxom)! - **Breaking:** Removed `silius`, `stackup`, `rundler` instances.
8+
9+
- [#58](https://github.com/wevm/prool/pull/58) [`5f79243`](https://github.com/wevm/prool/commit/5f792438e4977116725252b105e8b75cfb3a3ba1) Thanks [@jxom](https://github.com/jxom)! - **Breaking:** Refactored to use namespace imports.
10+
11+
### Imports
12+
13+
```diff
14+
- import { createServer } from 'prool'
15+
- import { anvil, alto } from 'prool/instances'
16+
- import { defineInstance } from 'prool'
17+
- import { definePool } from 'prool'
18+
+ import { Instance, Pool, Server } from 'prool'
19+
```
20+
21+
### `Server.create``Server.create`
22+
23+
```diff
24+
- const server = createServer({
25+
- instance: anvil(),
26+
+ const server = Server.create({
27+
+ instance: Instance.anvil(),
28+
})
29+
```
30+
31+
### `anvil`, `alto``Instance.anvil`, `Instance.alto`
32+
33+
```diff
34+
- const instance = anvil({ ... })
35+
+ const instance = Instance.anvil({ ... })
36+
37+
- const instance = alto({ ... })
38+
+ const instance = Instance.alto({ ... })
39+
```
40+
41+
### `defineInstance``Instance.define`
42+
43+
```diff
44+
- const foo = defineInstance((parameters) => {
45+
+ const foo = Instance.define((parameters) => {
46+
return {
47+
name: 'foo',
48+
// ...
49+
}
50+
})
51+
```
52+
53+
### `definePool``Pool.define`
54+
55+
```diff
56+
- const pool = definePool({
57+
- instance: anvil(),
58+
+ const pool = Pool.define({
59+
+ instance: Instance.anvil(),
60+
})
61+
```
62+
363
## 0.0.25
464

565
### Patch Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"[!start-pkg]": "",
2929
"name": "prool",
3030
"description": "HTTP testing instances for Ethereum",
31-
"version": "0.0.25",
31+
"version": "0.1.0",
3232
"type": "module",
3333
"sideEffects": false,
3434
"files": [

0 commit comments

Comments
 (0)