diff --git a/CHANGELOG/preview.md b/CHANGELOG/preview.md index c5af600..d25071b 100644 --- a/CHANGELOG/preview.md +++ b/CHANGELOG/preview.md @@ -1,5 +1,7 @@ # Preview Changelog +## [1.2.0][] - 2025-01-26 + ## [1.2.0-rc][] - 2025-01-26 ### Build and Packaging @@ -27,6 +29,7 @@ - Added comprehensive unit tests for `install_requirements`, `install_modules`, `get_installed_packages`, and `is_package_installed` functions. - Improved test coverage for exception handling scenarios. + ## [1.2.0-preview.4][] - 2024-12-28 ### Build and Packaging @@ -119,6 +122,7 @@ tracking. - Reduced the number of characters in lines in Markdown files ([#45](https://github.com/YourLabXYZ/PyPIxz/issues/45)) +[1.2.0]: https://github.com/YourLabXYZ/PyPIxz/compare/v1.2.0-rc...v1.2.0 [1.2.0-rc]: https://github.com/YourLabXYZ/PyPIxz/compare/v1.2.0-preview.4...v1.2.0-rc [1.2.0-preview.4]: https://github.com/YourLabXYZ/PyPIxz/compare/v1.2.0-preview.3...v1.2.0-preview.4 [1.2.0-preview.3]: https://github.com/YourLabXYZ/PyPIxz/compare/v1.2.0-preview.2...v1.2.0-preview.3 diff --git a/pyproject.toml b/pyproject.toml index 1d336fb..826ed1a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "PyPIxz" -version = "1.2.0-rc" +version = "1.2.0" authors = [ { name="YourLabXYZ - Organization on GitHub" }, ] diff --git a/setup.py b/setup.py index 562964f..7bf496e 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ from setuptools import setup, find_packages -VERSION = '1.2.0-rc' +VERSION = '1.2.0' DESCRIPTION = ('PyPIxz is a simple, modern, and easy-to-use solution for managing your Python ' 'dependencies.') diff --git a/src/pypixz/__version__.py b/src/pypixz/__version__.py index 0f71e15..f41b212 100644 --- a/src/pypixz/__version__.py +++ b/src/pypixz/__version__.py @@ -5,7 +5,7 @@ __description__ = ('PyPIxz module to manage your dependencies in a simple and efficient way while maintaining ' 'guaranteed security. ') __url__ = 'https://github.com/YourLabXYZ/PyPIxz' -__version__ = '1.2.0-rc' +__version__ = '1.2.0' __author__ = 'YourLabXYZ - Organization on GitHub' __license__ = 'MIT' __copyright__ = 'Copyright 2024 YourLabXYZ'