From 05407c9b0b496639a05485a3d064a7ab0ad22307 Mon Sep 17 00:00:00 2001 From: Andy Landy Date: Tue, 22 Oct 2024 12:37:31 +0000 Subject: [PATCH] minor project fixes --- CHANGELOG.md | 11 +++++++++-- README.md | 2 +- README.tmpl | 2 +- setup.py | 3 ++- 4 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d46e3d1..2bc2a26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,18 @@ # Changelog ## 2.5.0 +- Fully compatible with 2.0.4 - Add short names for frequently used things like `a` and `fmt` -- Fixed some bugs +- Add unified `activate_by_import` to be used both for Jupyter and regular Python +- Add rel ellipsis pos for strings like `x=['some', ...long', 'list']` +- Add object detailed printout, useful for non-dataclass classes +- Add protection against acidental mistyping in format attributes +- Fixed some bugs, e.g. + - cli not working in Python 3.12+ + - `default_format` being sometimes ignored ## 2.0.4 -- ... +- ...much, to be filled... ## 2.0.3 - Fixed tests in Windows/Mac diff --git a/README.md b/README.md index ac7e9d6..f58bb9e 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ _Contents:_ **[Installation](#installation)** | **[🚀 Quick Start](#-quick-sta --- -> :warning: **This module is actively updated and has a substantial list of features to add this week**: so any proposal or advice or warning is very welcome and will be taken into account of course. When I started it I wanted to make a tool meeting all standard use cases. I think in this particular domain this is rather achievable, so I'll try. Note `next_version` branch also. Have fun! +> :warning: **I'm open to update this module to meet new use cases and to make using it easier and fun**: so any proposal or advice or warning is very welcome and will be taken into account of course. When I started it I wanted to make a tool meeting all standard use cases. I think in this particular domain this is rather achievable, so I'll try. Note `next_version` branch also. Have fun! --- diff --git a/README.tmpl b/README.tmpl index d727024..1f23324 100644 --- a/README.tmpl +++ b/README.tmpl @@ -40,7 +40,7 @@ _Contents:_ **[Installation](#installation)** | **[🚀 Quick Start](#-quick-sta --- -> :warning: **This module is actively updated and has a substantial list of features to add this week**: so any proposal or advice or warning is very welcome and will be taken into account of course. When I started it I wanted to make a tool meeting all standard use cases. I think in this particular domain this is rather achievable, so I'll try. Note `next_version` branch also. Have fun! +> :warning: **I'm open to update this module to meet new use cases and to make using it easier and fun**: so any proposal or advice or warning is very welcome and will be taken into account of course. When I started it I wanted to make a tool meeting all standard use cases. I think in this particular domain this is rather achievable, so I'll try. Note `next_version` branch also. Have fun! --- diff --git a/setup.py b/setup.py index 5b2cc0c..bd04472 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,8 @@ tests_require=[ 'flake8', 'ipython', - 'pytest-cov' + 'pytest-cov', + 'notebook==6.2.0', ], install_requires=[], python_requires='>=3.6',