From 23dcb0d1736c315b913fe6bfe7dbb8c928a21699 Mon Sep 17 00:00:00 2001 From: Yilin Guo <77702646+guyilin-amazon@users.noreply.github.com> Date: Thu, 14 Oct 2021 11:00:33 -0700 Subject: [PATCH] Prepare v2.0.0 release (#210) * Prepare v2.0.0 release * Minor edits to changelog --- CHANGELOG.md | 10 +++++++++- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 17 +++-------------- 4 files changed, 14 insertions(+), 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a35254..becda7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # Changelog -## [2.0.0-alpha16] - Unreleased +## [2.0.0] - 2021-10-14 + +The Amazon QLDB team is pleased to announce the release of version v2.0.0 of Amazon QLDB Shell. This release is aimed at enhancing the developer experience when interacting with Amazon QLDB. + +### Enhancements: + +* The QLDB Shell is completely rewritten in Rust to make it faster to set up and easier to use with zero external dependencies. The Shell could be run by downloading prebuilt binaries for Linux, Windows and macOS without Python installation requirement. + +## [2.0.0-alpha16] - 2021-10-12 ### Changed diff --git a/Cargo.lock b/Cargo.lock index 578eb90..89183be 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -47,7 +47,7 @@ dependencies = [ [[package]] name = "amazon_qldb_shell" -version = "2.0.0-alpha16" +version = "2.0.0" dependencies = [ "amazon-qldb-driver", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 794d9d8..6a59cbf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "amazon_qldb_shell" -version = "2.0.0-alpha16" +version = "2.0.0" authors = ["Amazon Web Services"] edition = "2018" diff --git a/README.md b/README.md index b3d8c33..7e06ba6 100644 --- a/README.md +++ b/README.md @@ -3,20 +3,9 @@ [![License](https://img.shields.io/hexpm/l/plug.svg)](https://github.com/awslabs/amazon-qldb-shell/blob/main/LICENSE) [![CI Build](https://github.com/awslabs/amazon-qldb-shell/workflows/CI%20Build/badge.svg)](https://github.com/awslabs/amazon-qldb-shell/actions?query=workflow%3A%22CI+Build%22) -## Welcome to the v2.0 branch! - -Hi traveler, you've found your way to **alpha quality software**. Here be -dragons. - -The QLDB Shell is undergoing a complete rewrite in Rust to make it faster and -lower latency with zero external dependencies. This is an early alpha release -which is not intended for use in production systems. For the time being the -Python-based shell on the master branch continues to be the production-ready -release. Please contact us if you experiment with this early alpha release and -have feedback you'd like to share with us. - -If you'd like to follow along, [CHANGELOG.md](CHANGELOG.md) is kept up to date -with each commit. +This tool provides an interface to send PartiQL statements to [Amazon Quantum Ledger Database (QLDB)](https://aws.amazon.com/qldb/). +This tool is not intended to be incorporated into an application or adopted for production purposes. +The objective of the tool is to give developers, devops, database administrators, and anyone else interested the opportunity for rapid experimentation with QLDB and [PartiQL](https://docs.aws.amazon.com/qldb/latest/developerguide/ql-reference.html). ## Prerequisites