Skip to content

Commit f864d5d

Browse files
Update version to 6.1.1 across all files
1 parent 516fe5e commit f864d5d

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[![Python Version](https://img.shields.io/badge/python-3.8%2B-blue.svg)](https://www.python.org/downloads/)
66
[![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
7-
[![PyPI Version](https://img.shields.io/badge/pypi-6.0.0-orange.svg)](https://pypi.org/project/meridianalgo/)
7+
[![PyPI Version](https://img.shields.io/badge/pypi-6.1.1-orange.svg)](https://pypi.org/project/meridianalgo/)
88
[![Tests](https://img.shields.io/badge/tests-300%2B%20passing-brightgreen.svg)](tests/)
99

1010
MeridianAlgo is a comprehensive Python platform designed for institutional-grade quantitative finance. It provides a robust suite of tools for trading research, portfolio analytics, liquidity analysis, options pricing, and high-frequency execution.
@@ -153,7 +153,7 @@ If you use MeridianAlgo in your research or business, please cite it:
153153
title = {MeridianAlgo: The Complete Quantitative Finance Platform},
154154
author = {Meridian Algorithmic Research Team},
155155
year = {2026},
156-
version = {6.0.0},
156+
version = {6.1.1},
157157
url = {https://github.com/MeridianAlgo/Python-Packages}
158158
}
159159
```

examples/comprehensive_examples.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
MeridianAlgo v6.0.0 - Comprehensive Examples
2+
MeridianAlgo v6.1.1 - Comprehensive Examples
33
44
Demonstrates all major features of the package including:
55
- Portfolio Analytics (Pyfolio-style)
@@ -25,7 +25,7 @@
2525
)
2626

2727
print("=" * 70)
28-
print("MeridianAlgo v6.0.0 - Comprehensive Examples")
28+
print("MeridianAlgo v6.1.1 - Comprehensive Examples")
2929
print("=" * 70)
3030

3131

@@ -398,7 +398,7 @@
398398

399399
print(
400400
"""
401-
MeridianAlgo v6.0.0 provides:
401+
MeridianAlgo v6.1.1 provides:
402402
403403
Portfolio Analytics
404404
- 50+ performance metrics (Sharpe, Sortino, Calmar, etc.)

meridianalgo/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
MeridianAlgo v6.1.0 - The Complete Quantitative Finance Platform
2+
MeridianAlgo v6.1.1 - The Complete Quantitative Finance Platform
33
44
A comprehensive, institutional-grade Python library for quantitative finance
55
covering everything from trading research to portfolio analytics to derivatives.
@@ -32,10 +32,10 @@
3232
3333
Built by MeridianAlgo for quantitative professionals.
3434
35-
Version: 6.1.0 "Institutional Edition"
35+
Version: 6.1.1 "Institutional Edition"
3636
"""
3737

38-
__version__ = "6.1.0"
38+
__version__ = "6.1.1"
3939
__author__ = "Meridian Algorithmic Research Team"
4040
__email__ = "support@meridianalgo.com"
4141
__license__ = "MIT"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def read_requirements(filename):
2828

2929
setup(
3030
name="meridianalgo",
31-
version="6.1.0",
31+
version="6.1.1",
3232
author="Meridian Algorithmic Research Team",
3333
author_email="support@meridianalgo.com",
3434
description="MeridianAlgo - The Complete Quantitative Finance Platform for Professional Developers",

0 commit comments

Comments
 (0)