From 16f6e67ade5f0282ed9d9838b46590784c00fca7 Mon Sep 17 00:00:00 2001 From: Ze Date: Sat, 24 Aug 2024 00:00:20 -0700 Subject: [PATCH 1/2] fix(readme): fix lint (#41) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c733defa..ac376e1f 100644 --- a/README.md +++ b/README.md @@ -176,7 +176,7 @@ Please see our [contribution guidelines](https://github.com/piplabs/story/blob/b ### Acknowledgements -We would like to express our sincere gratitude to the [Omni](https://github.com/omni-network) team for their valuable research and contributions to the blockchain space. The Story blockchain's CECS (Consensus Execution Client Separation) architecture was influenced by the Omni's team pioneering work on the EVM staking module using the engine API. Their early efforts showcased the potential of this architecture and served as an inspiration to us. Our initial codebase was, in fact, forked from an early version of their work. +We would like to express our sincere gratitude to the [Omni](https://github.com/omni-network) team for their valuable research and contributions to the blockchain space. The Story blockchain's CECS (Consensus Execution Client Separation) architecture was influenced by the Omni's team pioneering work on the EVM staking module using the engine API. Their early efforts showcased the potential of this architecture and served as an inspiration to us. Our initial codebase was, in fact, forked from an early version of their work. We built the `story` consensus client leveraging the [Cosmos SDK](https://github.com/cosmos/cosmos-sdk) using [CometBFT](https://github.com/cometbft/cometbft) as the consensus engine. Thanks to all the open source contributors and their wonderful work. From 4741802007ae56f9802e08b9567a13a590251aee Mon Sep 17 00:00:00 2001 From: Leeren Date: Sat, 24 Aug 2024 00:08:37 -0700 Subject: [PATCH 2/2] chore(release): bump story to stable release (#40) --- lib/buildinfo/buildinfo.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/buildinfo/buildinfo.go b/lib/buildinfo/buildinfo.go index 104f1407..2963b620 100644 --- a/lib/buildinfo/buildinfo.go +++ b/lib/buildinfo/buildinfo.go @@ -13,10 +13,10 @@ import ( ) const ( - VersionMajor = 0 // Major version component of the current release - VersionMinor = 9 // Minor version component of the current release - VersionPatch = 1 // Patch version component of the current release - VersionMeta = "unstable" // Version metadata to append to the version string + VersionMajor = 0 // Major version component of the current release + VersionMinor = 9 // Minor version component of the current release + VersionPatch = 9 // Patch version component of the current release + VersionMeta = "stable" // Version metadata to append to the version string ) // Version returns the version of the whole story-monorepo and all binaries built from this git commit.