diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index a91e5678..7bc19d85 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -11,6 +11,6 @@ "marine": "0.24.0", "crates/fluence-app-service": "0.23.0", "tools/cli": "0.12.6", - "tools/repl": "0.18.8", + "tools/repl": "0.19.0", "marine-js": "0.3.44" } diff --git a/Cargo.lock b/Cargo.lock index 6cb7b4f9..5cae80ce 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1955,7 +1955,7 @@ dependencies = [ [[package]] name = "mrepl" -version = "0.18.8" +version = "0.19.0" dependencies = [ "anyhow", "check-latest", diff --git a/tools/repl/CHANGELOG.md b/tools/repl/CHANGELOG.md index e0b24914..a3dc18d4 100644 --- a/tools/repl/CHANGELOG.md +++ b/tools/repl/CHANGELOG.md @@ -4,6 +4,17 @@ 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.19.0](https://github.com/fluencelabs/marine/compare/mrepl-v0.18.8...mrepl-v0.19.0) (2023-02-08) + + +### ⚠ BREAKING CHANGES + +* add pretty-print for repl output + small error messaging improvement ([#274](https://github.com/fluencelabs/marine/issues/274)) + +### Features + +* add pretty-print for repl output + small error messaging improvement ([#274](https://github.com/fluencelabs/marine/issues/274)) ([9c1f20b](https://github.com/fluencelabs/marine/commit/9c1f20b8a74e467f2e403d18aabb7428baef9bc1)) + ## [Unreleased] ## [0.18.8] - 2022-12-06 diff --git a/tools/repl/Cargo.toml b/tools/repl/Cargo.toml index 8fc02d6e..fcb857c0 100644 --- a/tools/repl/Cargo.toml +++ b/tools/repl/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "mrepl" description = "Fluence Marine REPL intended for testing purposes" -version = "0.18.8" +version = "0.19.0" authors = ["Fluence Labs"] repository = "https://github.com/fluencelabs/marine/tools/repl" license = "Apache-2.0"