diff --git a/CHANGELOG.md b/CHANGELOG.md index b6c2edc..9823041 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,21 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.0] - 2023-12-27 + ### Added - Ideal method to generate points of varieties, `Ideal.point_on_variety`. -- Field object (from [lips](https://github.com/GDeLaurentis/lips)) +- Field object (moved from [lips](https://github.com/GDeLaurentis/lips)) ### Fixed -- Syntax consistency when printing polynomials over rings with single-character variables +- Syntax consistency when printing polynomials over rings with single-character variables (forced `short=0` always). +- Import path in Singular for `poly.lib` is now `polylib.lib`. ## [0.1.3] - 2023-03-02 ### Added -- Basic interface functions. -- Primality test. +- Basic interface functions for `Ring`, `QuotientRing` and `Ideal`. +- Primality test, `Ideal.test_primality`. -[unreleased]: https://github.com/GDeLaurentis/syngular/compare/v0.1.3...HEAD +[unreleased]: https://github.com/GDeLaurentis/syngular/compare/v0.2.0...HEAD +[0.2.0]: https://github.com/GDeLaurentis/syngular/compare/v0.1.3...v0.2.0 [0.1.3]: https://github.com/GDeLaurentis/syngular/releases/tag/v0.1.3 diff --git a/setup.py b/setup.py index de6d7b1..a903171 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name='syngular', - version='v0.1.3', + version='v0.2.0', license='GNU General Public License v3.0', description='An Object-Oriented Python Interface to Singular', long_description=long_description, @@ -15,7 +15,7 @@ author='Giuseppe De Laurentis', author_email='g.dl@hotmail.it', url='https://github.com/GDeLaurentis/syngular', - download_url='https://github.com/GDeLaurentis/syngular/archive/v0.1.3.tar.gz', + download_url='https://github.com/GDeLaurentis/syngular/archive/v0.2.0.tar.gz', keywords=['syngular', 'singular', 'algebraic geometry'], packages=find_packages(), install_requires=[ @@ -25,7 +25,7 @@ 'pyadic', ], classifiers=[ - 'Development Status :: 3 - Alpha', + 'Development Status :: 3 - Beta', 'Intended Audience :: Science/Research', 'Topic :: Scientific/Engineering :: Physics', 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',