Skip to content

Commit 8f460b3

Browse files
committed
bump version to v1.0.0
1 parent 82c08ee commit 8f460b3

File tree

5 files changed

+71
-3
lines changed

5 files changed

+71
-3
lines changed

CHANGELOG.txt

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
v1.0.0 (2023-05-24)
2+
-------------------
3+
4+
**ADDED:**
5+
6+
* eth_abi_init
7+
* eth_abi_free
8+
* eth_abi_bool
9+
* eth_abi_int8
10+
* eth_abi_int16
11+
* eth_abi_int32
12+
* eth_abi_int64
13+
* eth_abi_uint8
14+
* eth_abi_uint16
15+
* eth_abi_uint32
16+
* eth_abi_uint64
17+
* eth_abi_address
18+
* eth_abi_bytes8
19+
* eth_abi_bytes16
20+
* eth_abi_bytes32
21+
* eth_abi_bytes
22+
* eth_abi_to_hex
23+
* eth_abi_from_hex
24+
* eth_abi_call
25+
* eth_abi_call_end
26+
* eth_abi_array
27+
* eth_abi_array_end
28+
* eth_account_create
29+
* eth_account_from_privkey
30+
* eth_account_address_get
31+
* eth_account_privkey_get
32+
* eth_account_pubkey_get
33+
* eth_account_sign
34+
* eth_is_address
35+
* eth_is_checksum_address
36+
* eth_to_checksum_address
37+
* eth_bloom_init
38+
* eth_bloom_from_bytes
39+
* eth_bloom_and
40+
* eth_bloom_or
41+
* eth_bloom_copy
42+
* eth_rlp_init
43+
* eth_rlp_uint8
44+
* eth_rlp_uint16
45+
* eth_rlp_uint32
46+
* eth_rlp_uint64
47+
* eth_rlp_address
48+
* eth_rlp_array
49+
* eth_rlp_array_end
50+
* eth_rlp_bytes
51+
* eth_rlp_hex
52+
* eth_rlp_len
53+
* eth_rlp_to_hex
54+
* eth_rlp_to_bytes
55+
* eth_rlp_from_hex
56+
* eth_rlp_free
57+
* eth_is_hex
58+
* eth_hex_pad_left
59+
* eth_hex_pad_right
60+
* eth_hex_from_bytes
61+
* eth_hex_to_bytes
62+
* eth_ecdsa_pubkey_get
63+
* eth_ecdsa_sign
64+
* eth_unit_convert
65+
* eth_keccak256
66+
* eth_keccak256p

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ CMAKE_MINIMUM_REQUIRED(VERSION 3.0)
22
PROJECT(
33
ethc
44
LANGUAGES C
5-
VERSION 0.8.0)
5+
VERSION 1.0.0)
66

77
INCLUDE(GNUInstallDirs)
88

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
[![ci-docs](https://github.com/mhw0/libethc/actions/workflows/ci-docs.yaml/badge.svg)](https://github.com/mhw0/libethc/actions/workflows/ci-docs.yaml)
55
[![GitHub release](https://img.shields.io/github/v/release/mhw0/libethc?include_prereleases)](https://GitHub.com/mhw0/libethc/releases/)
66

7-
libethc is an ethereum library, but for C language. It comes with numerous utility functions that will help when interacting with the etheruem network. And all the functions are well tested, standardized and follow certain rules to keep the API/ABI stable.
7+
libethc is an open-source Ethereum library, but for C language. It comes with numerous utility functions that will help when interacting with the etheruem network. And all the functions are well tested, standardized and follow certain rules to keep the API/ABI stable.
88

99
Documentation: https://mhw0.github.io/libethc

docs/changelog.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
Changelog
22
=========
3+
4+
.. include:: ../../CHANGELOG.txt

docs/conf.py.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ author = 'mhw0'
2020
copyright = "2021-2023, mhw0"
2121

2222
# The full version, including alpha/beta/rc tags
23-
release = '0.0.0'
23+
release = '1.0.0'
2424

2525

2626
# -- General configuration ---------------------------------------------------

0 commit comments

Comments
 (0)