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
8 changes: 8 additions & 0 deletions CHANGELOG/preview.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Preview Changelog

## [1.2.1][] - 2025-10-20

### Code and Metadata Updates

- Updated copyright year in `__version__.py` → changed from "2024" to "2025" in the `__copyright__` variable.
- Replaced all single quotes (' ') with double quotes (" ") in `__version__.py` for style consistency.

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

## [1.2.0-rc][] - 2025-01-26
Expand Down Expand Up @@ -122,6 +129,7 @@ tracking.
- Reduced the number of characters in lines in Markdown files
([#45](https://github.com/YourLabXYZ/PyPIxz/issues/45))

[1.2.1]: https://github.com/YourLabXYZ/PyPIxz/compare/v1.2.0...v1.2.1
[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
Expand Down
16 changes: 8 additions & 8 deletions src/pypixz/__version__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Copyright (c) 2025 YourLabXYZ.
# Licensed under the MIT License.

__title__ = 'PyPIxz'
__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'
__author__ = 'YourLabXYZ - Organization on GitHub'
__license__ = 'MIT'
__copyright__ = 'Copyright 2024 YourLabXYZ'
__title__ = "PyPIxz"
__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.1"
__author__ = "YourLabXYZ - Organization on GitHub"
__license__ = "MIT"
__copyright__ = "Copyright 2025 YourLabXYZ"
Loading