From fb662d6240cd42de71730afa5c45e1bac23aed96 Mon Sep 17 00:00:00 2001 From: Bohdan Khorolets Date: Fri, 2 Jun 2023 12:52:08 +0300 Subject: [PATCH] chore: 0.7.2 release (#76) * chore: 0.7.2 release * Upgrade tokio, add necessery features * Update CHANGELOG.md Co-authored-by: Vlad Frolov --------- Co-authored-by: Vlad Frolov --- CHANGELOG.md | 9 +++++++-- Cargo.toml | 6 +++--- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6af1b2c..e3dd3a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,14 @@ 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). -## [Unreleased](https://github.com/near/near-lake-framework/compare/v0.7.1...HEAD) +## [Unreleased](https://github.com/near/near-lake-framework/compare/v0.7.2...HEAD) -## [0.7.1](https://github.com/near/near-lake-framework/compare/v0.7.1...0.7.0) +## [0.7.2](https://github.com/near/near-lake-framework/compare/v0.7.1...0.7.2) + +- Upgrade near primitives crate to `0.17.0` +- Upgrade `tokio` version to the latest (`1.28.2`) + +## [0.7.1](https://github.com/near/near-lake-framework/compare/v0.7.0...0.7.1) - Refactor `s3_fetchers` to allow testing - Fix `betanet` default region (the corresponding bucket is in different region) diff --git a/Cargo.toml b/Cargo.toml index 968f849..2660d08 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ rust-version = "1.58.1" # cargo-workspaces [workspace.metadata.workspaces] -version = "0.7.1" +version = "0.7.2" [dependencies] anyhow = "1.0.51" @@ -27,11 +27,11 @@ futures = "0.3.23" serde = { version = "1", features = ["derive"] } serde_json = "1.0.75" thiserror = "1.0.38" -tokio = { version = "1.1", features = ["sync", "time"] } +tokio = { version = "1.28.2", features = ["sync", "time", "rt", "macros"] } tokio-stream = { version = "0.1" } tracing = "0.1.13" -near-indexer-primitives = ">=0.16.0,<0.17.0" +near-indexer-primitives = "0.17" [dev-dependencies] aws-smithy-http = "0.53.0"