Skip to content

Commit

Permalink
bump to 0.3.0, other deps, add 'sf' prefix to all substreams protobuf…
Browse files Browse the repository at this point in the history
… objects
  • Loading branch information
sduchesneau committed Jan 10, 2023
1 parent b72be81 commit bc5c347
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 14 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Changelog

## v0.3.0

* Changed all protobuf namespaces from 'substreams....' to 'sf.substreams...', ex: sf.substreams.database.v1.DatabaseChanges
14 changes: 8 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "substreams-eth-block-meta"
version = "0.2.0"
version = "0.3.0"
description = "Substream Ethereum Block Meta Substreams tracking block at day/month boundaries"
edition = "2021"
repository = "https://github.com/streamingfast/substreams-eth-block-meta"
Expand All @@ -14,9 +14,9 @@ anyhow = "1"
prost = "0.11"
prost-types = "0.11"
substreams = "0.5.0"
substreams-database-change = "0.2.0"
substreams-entity-change = "0.3.0"
substreams-sink-kv = { path = "/Users/stepd/repos/substreams-sink-kv" }
substreams-database-change = "1.0.0"
substreams-entity-change = "1.0.0"
substreams-sink-kv = "0.1.1"
substreams-ethereum = "0.8.0"
chrono = { version = "0.4", features = [ "std" ], default-features = false }

Expand Down
8 changes: 4 additions & 4 deletions substreams.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
specVersion: v0.1.0
package:
name: "substreams_eth_block_meta"
version: v0.2.1
version: v0.3.0

imports:
database_change: https://github.com/streamingfast/substreams-database-change/releases/download/v0.1.0/substreams-database-change-v0.1.0.spkg
Expand Down Expand Up @@ -41,7 +41,7 @@ modules:
- store: store_block_meta_end
mode: deltas
output:
type: proto:substreams.database.v1.DatabaseChanges
type: proto:sf.substreams.database.v1.DatabaseChanges

- name: kv_out
kind: map
Expand All @@ -51,7 +51,7 @@ modules:
- store: store_block_meta_end
mode: deltas
output:
type: proto:substreams.kv.v1.KVOperations
type: proto:sf.substreams.kv.v1.KVOperations

- name: graph_out
kind: map
Expand All @@ -61,4 +61,4 @@ modules:
- store: store_block_meta_end
mode: deltas
output:
type: proto:substreams.entity.v1.EntityChanges
type: proto:sf.substreams.entity.v1.EntityChanges

0 comments on commit bc5c347

Please sign in to comment.