Skip to content

Commit 095ab97

Browse files
chore: version packages (#114)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent e21cb3c commit 095ab97

File tree

5 files changed

+25
-25
lines changed

5 files changed

+25
-25
lines changed

.changeset/soft-carrots-rush.md

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

src/CHANGELOG.md

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

3+
## 0.9.5
4+
5+
### Patch Changes
6+
7+
- [#113](https://github.com/wevm/ox/pull/113) [`e21cb3c`](https://github.com/wevm/ox/commit/e21cb3cf0b7412f9ca72824247d22ba25e8be4c9) Thanks [@jxom](https://github.com/jxom)! - Added support for specifying the ABI and signature name to:
8+
9+
- `AbiFunction.{encodeData,encodeResult,decodeData,decodeResult}`
10+
- `AbiError.{encode,decode}`
11+
- `AbiEvent.{encode,decode}`
12+
13+
Example:
14+
15+
```ts twoslash
16+
import { AbiFunction } from "ox";
17+
import { abi } from "./abi";
18+
19+
const data = AbiFunction.encodeData(abi, "approve", [
20+
"0x0000000000000000000000000000000000000000",
21+
1n,
22+
]);
23+
```
24+
325
## 0.9.4
426

527
### Patch Changes

src/jsr.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wevm/ox",
3-
"version": "0.9.4",
3+
"version": "0.9.5",
44
"publish": {
55
"include": ["LICENSE", "README.md", "CHANGELOG.md", "**/*.ts"],
66
"exclude": [

src/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ox",
33
"description": "Ethereum Standard Library",
4-
"version": "0.9.4",
4+
"version": "0.9.5",
55
"type": "module",
66
"main": "./_cjs/index.js",
77
"module": "./_esm/index.js",

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
/** @internal */
2-
export const version = '0.9.4'
2+
export const version = '0.9.5'

0 commit comments

Comments
 (0)