Skip to content
This repository was archived by the owner on Nov 29, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG/preview.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Preview Changelog

## [1.2.0][] - 2025-01-26

## [1.2.0-rc][] - 2025-01-26

### Build and Packaging
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "PyPIxz"
version = "1.2.0-rc"
version = "1.2.0"
authors = [
{ name="YourLabXYZ - Organization on GitHub" },
]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.')

Expand Down
2 changes: 1 addition & 1 deletion src/pypixz/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Loading