mypackage-dev 0.2.0__tar.gz → 0.2.1.dev0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {mypackage_dev-0.2.0 → mypackage_dev-0.2.1.dev0}/PKG-INFO +3 -1
- {mypackage_dev-0.2.0 → mypackage_dev-0.2.1.dev0}/README.md +2 -0
- {mypackage_dev-0.2.0 → mypackage_dev-0.2.1.dev0}/pyproject.toml +1 -1
- {mypackage_dev-0.2.0 → mypackage_dev-0.2.1.dev0}/src/mypackage/__init__.py +1 -1
- {mypackage_dev-0.2.0 → mypackage_dev-0.2.1.dev0}/LICENSE +0 -0
- {mypackage_dev-0.2.0 → mypackage_dev-0.2.1.dev0}/src/mypackage/calculator.py +0 -0
- {mypackage_dev-0.2.0 → mypackage_dev-0.2.1.dev0}/src/mypackage/data_processor.py +0 -0
- {mypackage_dev-0.2.0 → mypackage_dev-0.2.1.dev0}/src/mypackage/py.typed +0 -0
- {mypackage_dev-0.2.0 → mypackage_dev-0.2.1.dev0}/src/mypackage/text_utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mypackage-dev
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1.dev0
|
|
4
4
|
Summary: A sample Python package with semantic versioning for multiple environments (Development Environment)
|
|
5
5
|
License: MIT
|
|
6
6
|
License-File: LICENSE
|
|
@@ -292,6 +292,8 @@ Comprehensive guides are available for all aspects of this project:
|
|
|
292
292
|
|
|
293
293
|
### Development Workflow
|
|
294
294
|
- [VERSION_MANAGEMENT.md](VERSION_MANAGEMENT.md) - **Comprehensive version bumping guide** 🆕
|
|
295
|
+
- [PRE_RELEASE_VERSIONING.md](PRE_RELEASE_VERSIONING.md) - **Pre-release & development versioning (dev, alpha, beta, RC)** 🆕
|
|
296
|
+
- [PRE_RELEASE_QUICK_START.md](PRE_RELEASE_QUICK_START.md) - **Quick start for pre-release versions** 🆕
|
|
295
297
|
- [BRANCHING_STRATEGY.md](BRANCHING_STRATEGY.md) - Git workflow and branch management
|
|
296
298
|
- [RELEASE_NOTES_GUIDE.md](RELEASE_NOTES_GUIDE.md) - Conventional commits and automated release notes
|
|
297
299
|
|
|
@@ -266,6 +266,8 @@ Comprehensive guides are available for all aspects of this project:
|
|
|
266
266
|
|
|
267
267
|
### Development Workflow
|
|
268
268
|
- [VERSION_MANAGEMENT.md](VERSION_MANAGEMENT.md) - **Comprehensive version bumping guide** 🆕
|
|
269
|
+
- [PRE_RELEASE_VERSIONING.md](PRE_RELEASE_VERSIONING.md) - **Pre-release & development versioning (dev, alpha, beta, RC)** 🆕
|
|
270
|
+
- [PRE_RELEASE_QUICK_START.md](PRE_RELEASE_QUICK_START.md) - **Quick start for pre-release versions** 🆕
|
|
269
271
|
- [BRANCHING_STRATEGY.md](BRANCHING_STRATEGY.md) - Git workflow and branch management
|
|
270
272
|
- [RELEASE_NOTES_GUIDE.md](RELEASE_NOTES_GUIDE.md) - Conventional commits and automated release notes
|
|
271
273
|
|
|
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
|
|
|
4
4
|
|
|
5
5
|
[tool.poetry]
|
|
6
6
|
name = "mypackage-dev"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.1.dev0"
|
|
8
8
|
description = "A sample Python package with semantic versioning for multiple environments (Development Environment)"
|
|
9
9
|
authors = [ "Your Name <your.email@example.com>",]
|
|
10
10
|
readme = "README.md"
|
|
@@ -5,7 +5,7 @@ This package demonstrates best practices for creating and publishing
|
|
|
5
5
|
Python packages to PyPI with support for multiple environments.
|
|
6
6
|
"""
|
|
7
7
|
|
|
8
|
-
__version__ = "0.2.
|
|
8
|
+
__version__ = "0.2.1.dev0"
|
|
9
9
|
|
|
10
10
|
from .calculator import add, divide, modulo, multiply, power, subtract
|
|
11
11
|
from .data_processor import (
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|