From 268b48b2b148662ea85f9929410d55a776686d4e Mon Sep 17 00:00:00 2001 From: Bohdan Khorolets Date: Wed, 8 Mar 2023 14:41:50 +0200 Subject: [PATCH] chore: Release 0.12.1 (bump version, update changelog) (#366) --- Cargo.lock | 2 +- indexer/CHANGELOG.md | 6 +++++- indexer/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 79a5829..cc37365 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2294,7 +2294,7 @@ dependencies = [ [[package]] name = "indexer-explorer" -version = "0.12.0" +version = "0.12.1" dependencies = [ "actix", "actix-rt", diff --git a/indexer/CHANGELOG.md b/indexer/CHANGELOG.md index e8088da..fc05839 100644 --- a/indexer/CHANGELOG.md +++ b/indexer/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog -## 0.12.0 +## 0.12.1 + +* Fix serialization issues we have since the switching to newer primitives (handling the pure `Vec` data as base64-encoded strings) + +## 0.12.0 (BROKEN, use 0.12.1) * Add support of [Meta Transactions](https://github.com/near/NEPs/pull/366) and upgrade near-indexer-primitives to `0.16.0` * Add [new columns](../database/migrations/2023-02-28-160000_meta_tx/up.sql) to `transaction_actions` and `action_receipt_actions` for supporting Meta Transactions (as usual, read [the migration](../database/migrations/2023-02-28-160000_meta_tx/up.sql) before applying if your DB is not empty) diff --git a/indexer/Cargo.toml b/indexer/Cargo.toml index a7d5bb9..5e552ad 100644 --- a/indexer/Cargo.toml +++ b/indexer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "indexer-explorer" -version = "0.12.0" +version = "0.12.1" authors = ["Near Inc "] edition = "2021" rust-version = "1.64"