From 672f724aac272a31e41160eea73ba4c93b01d895 Mon Sep 17 00:00:00 2001 From: Tyler Hallada Date: Sat, 14 Nov 2020 21:43:22 -0500 Subject: [PATCH] Bump version in sqlx-cli README to 0.2.0 I was getting an error while running `cargo sqlx prepare` while on `sqlx` version 0.4.1: ``` error: EOF while parsing an object at line 34 column 6 ``` Then I realized that I had version 0.1.0-beta.1 of sqlx-cli but 0.2.0 was released on cargo. I upgraded to 0.2.0 and the command succeeded. I figured that the README was mistakenly not updated with the release. --- sqlx-cli/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sqlx-cli/README.md b/sqlx-cli/README.md index 80e7f81e..be381f72 100644 --- a/sqlx-cli/README.md +++ b/sqlx-cli/README.md @@ -9,10 +9,10 @@ mode with `sqlx::query!()` and friends. ```bash # supports all databases supported by SQLx -$ cargo install --version=0.1.0-beta.1 sqlx-cli +$ cargo install --version=0.2.0 sqlx-cli # only for postgres -$ cargo install --version=0.1.0-beta.1 sqlx-cli --no-default-features --features postgres +$ cargo install --version=0.2.0 sqlx-cli --no-default-features --features postgres ``` ### Usage