diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e75ec8..fd6b990 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.5.16 + +- Add StoreSetSum to the WRITABLE_STORE array + ## 0.5.15 - Add new store type StoreSetSum which allows both summing and setting a value in a store. This is useful for storing aggregated values in a store. diff --git a/Cargo.lock b/Cargo.lock index b1a6b20..cb16a3c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -635,7 +635,7 @@ dependencies = [ [[package]] name = "substreams" -version = "0.5.15" +version = "0.5.16" dependencies = [ "anyhow", "bigdecimal", @@ -657,7 +657,7 @@ dependencies = [ [[package]] name = "substreams-macro" -version = "0.5.15" +version = "0.5.16" dependencies = [ "pretty_assertions", "prettyplease", diff --git a/Cargo.toml b/Cargo.toml index 2b2acc7..bd33ebd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ members = [ ] [workspace.package] -version = "0.5.15" +version = "0.5.16" description = "Substreams SDK - A streaming data engine for The Graph - by StreamingFast" edition = "2018" homepage = "https://substreams.streamingfast.io/" @@ -17,7 +17,7 @@ categories = ["api-bindings", "external-ffi-bindings", "wasm"] rust-version = "1.60" [workspace.dependencies] -substreams-macro = { version = "0.5.15", path = "./substreams-macro" } +substreams-macro = { version = "0.5.16", path = "./substreams-macro" } [profile.release] lto = true