From 51e6966a9c6e4d5ecdfa7f372feb29b8d4beba82 Mon Sep 17 00:00:00 2001 From: Axel Gard Date: Sat, 19 Aug 2023 08:07:08 +0200 Subject: [PATCH] updated version and added more context about v3 --- README.md | 7 ++++++- cira/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f643940..29efc7d 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,12 @@ The name **cira** is a miss spelling of the word for a [baby alpaca cria](https: [Axel Gard](https://github.com/AxelGard) is main developer for cira. -**A new version v3.0.0 is comming, it will have breaking changes!** +## A new version v3.0.0 is comming, it will have breaking changes! +Im working the new version with more **machine learning support** and moving the underlying SDK to [Alpaca-py](https://alpaca.markets/docs/python-sdk/). +If you want to take a look, [here is the branch](https://github.com/AxelGard/cira/tree/mv-aplc-py-sdk) but this is still under quite have development. +It will have some breaking changes, sorry for that. +I will change some of the interfaces to make it more clear when things are happening. + ## Getting Started diff --git a/cira/__init__.py b/cira/__init__.py index d567db2..ab3ad7d 100644 --- a/cira/__init__.py +++ b/cira/__init__.py @@ -14,6 +14,6 @@ from .stock import Stock from .portfolio import Portfolio -__version__ = "2.3.0" +__version__ = "2.3.1" __author__ = "Axel Gard" __credits__ = "alpaca.markets" diff --git a/setup.py b/setup.py index 776c6f8..dda7335 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='cira', - version='2.3.0', + version='2.3.1', description='A simpler library for the alapaca trade api', url='https://github.com/AxelGard/cira', author='Axel Gard',