From 74308ea20d1be8c8d83102716e3ea3cf40d26827 Mon Sep 17 00:00:00 2001 From: Daniel Mueller Date: Mon, 31 Jan 2022 08:29:25 -0800 Subject: [PATCH] Bump version to 0.1.4 This change bumps the program's version to 0.1.4. The following notable changes have been made since 0.1.3: - Removed account update streaming support via events account - Removed --json argument from events subcommand - Renamed 'events' subcommand to 'updates' - Added support for streaming realtime market data via updates data - Formatted code base using rustfmt and checked in configuration - Added enforcement of code formatting style checks in CI - Bumped minimum supported Rust version to 1.56 - Bumped apca dependency to 0.22.0 - Bumped tracing-subscriber dependency to 0.3 --- CHANGELOG.md | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 88dbed4..a3a5a78 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -Unreleased ----------- +0.1.4 +----- - Removed account update streaming support via `events account` - Removed `--json` argument from `events` subcommand - Renamed `events` subcommand to `updates` diff --git a/Cargo.toml b/Cargo.toml index 6f1f0cf..2aa3963 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "apcacli" -version = "0.1.3" +version = "0.1.4" authors = ["Daniel Mueller "] edition = "2018" license = "GPL-3.0-or-later"