Skip to content

Commit

Permalink
bump version to v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mhw0 committed May 24, 2023
1 parent 82c08ee commit 8f460b3
Show file tree
Hide file tree
Showing 5 changed files with 71 additions and 3 deletions.
66 changes: 66 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
v1.0.0 (2023-05-24)
-------------------

**ADDED:**

* eth_abi_init
* eth_abi_free
* eth_abi_bool
* eth_abi_int8
* eth_abi_int16
* eth_abi_int32
* eth_abi_int64
* eth_abi_uint8
* eth_abi_uint16
* eth_abi_uint32
* eth_abi_uint64
* eth_abi_address
* eth_abi_bytes8
* eth_abi_bytes16
* eth_abi_bytes32
* eth_abi_bytes
* eth_abi_to_hex
* eth_abi_from_hex
* eth_abi_call
* eth_abi_call_end
* eth_abi_array
* eth_abi_array_end
* eth_account_create
* eth_account_from_privkey
* eth_account_address_get
* eth_account_privkey_get
* eth_account_pubkey_get
* eth_account_sign
* eth_is_address
* eth_is_checksum_address
* eth_to_checksum_address
* eth_bloom_init
* eth_bloom_from_bytes
* eth_bloom_and
* eth_bloom_or
* eth_bloom_copy
* eth_rlp_init
* eth_rlp_uint8
* eth_rlp_uint16
* eth_rlp_uint32
* eth_rlp_uint64
* eth_rlp_address
* eth_rlp_array
* eth_rlp_array_end
* eth_rlp_bytes
* eth_rlp_hex
* eth_rlp_len
* eth_rlp_to_hex
* eth_rlp_to_bytes
* eth_rlp_from_hex
* eth_rlp_free
* eth_is_hex
* eth_hex_pad_left
* eth_hex_pad_right
* eth_hex_from_bytes
* eth_hex_to_bytes
* eth_ecdsa_pubkey_get
* eth_ecdsa_sign
* eth_unit_convert
* eth_keccak256
* eth_keccak256p
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ CMAKE_MINIMUM_REQUIRED(VERSION 3.0)
PROJECT(
ethc
LANGUAGES C
VERSION 0.8.0)
VERSION 1.0.0)

INCLUDE(GNUInstallDirs)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
[![ci-docs](https://github.com/mhw0/libethc/actions/workflows/ci-docs.yaml/badge.svg)](https://github.com/mhw0/libethc/actions/workflows/ci-docs.yaml)
[![GitHub release](https://img.shields.io/github/v/release/mhw0/libethc?include_prereleases)](https://GitHub.com/mhw0/libethc/releases/)

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.
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.

Documentation: https://mhw0.github.io/libethc
2 changes: 2 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
Changelog
=========

.. include:: ../../CHANGELOG.txt
2 changes: 1 addition & 1 deletion docs/conf.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ author = 'mhw0'
copyright = "2021-2023, mhw0"

# The full version, including alpha/beta/rc tags
release = '0.0.0'
release = '1.0.0'


# -- General configuration ---------------------------------------------------
Expand Down

0 comments on commit 8f460b3

Please sign in to comment.