git-stream 2.0.2__tar.gz → 2.0.3__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.
- {git_stream-2.0.2 → git_stream-2.0.3}/.github/workflows/build-and-release.yml +2 -0
- {git_stream-2.0.2 → git_stream-2.0.3}/CHANGELOG.md +7 -2
- {git_stream-2.0.2 → git_stream-2.0.3}/PKG-INFO +1 -1
- {git_stream-2.0.2 → git_stream-2.0.3}/README.md +1 -1
- {git_stream-2.0.2 → git_stream-2.0.3}/git_stream/__init__.py +1 -1
- {git_stream-2.0.2 → git_stream-2.0.3}/pyproject.toml +2 -2
- {git_stream-2.0.2 → git_stream-2.0.3}/setup.py +1 -1
- {git_stream-2.0.2 → git_stream-2.0.3}/.gitignore +0 -0
- {git_stream-2.0.2 → git_stream-2.0.3}/.p4ignore +0 -0
- {git_stream-2.0.2 → git_stream-2.0.3}/.readthedocs.yml +0 -0
- {git_stream-2.0.2 → git_stream-2.0.3}/DOCUMENTATION.md +0 -0
- {git_stream-2.0.2 → git_stream-2.0.3}/LICENSE +0 -0
- {git_stream-2.0.2 → git_stream-2.0.3}/MANIFEST.in +0 -0
- {git_stream-2.0.2 → git_stream-2.0.3}/docs/Makefile +0 -0
- {git_stream-2.0.2 → git_stream-2.0.3}/docs/coding_standards.py +0 -0
- {git_stream-2.0.2 → git_stream-2.0.3}/docs/conf.py +0 -0
- {git_stream-2.0.2 → git_stream-2.0.3}/docs/make.bat +0 -0
- {git_stream-2.0.2 → git_stream-2.0.3}/docs/modules.rst +0 -0
- {git_stream-2.0.2 → git_stream-2.0.3}/docs/requirements.txt +0 -0
- {git_stream-2.0.2 → git_stream-2.0.3}/git_stream/__main__.py +0 -0
- {git_stream-2.0.2 → git_stream-2.0.3}/git_stream/py.typed +0 -0
- {git_stream-2.0.2 → git_stream-2.0.3}/tests/__init__.py +0 -0
- {git_stream-2.0.2 → git_stream-2.0.3}/tests/test_main.py +0 -0
- {git_stream-2.0.2 → git_stream-2.0.3}/util/Update-Env.ps1 +0 -0
- {git_stream-2.0.2 → git_stream-2.0.3}/util/update-env-core.ps1 +0 -0
- {git_stream-2.0.2 → git_stream-2.0.3}/util/update-env.sh +0 -0
- {git_stream-2.0.2 → git_stream-2.0.3}/vjer-rc.yml +0 -0
- {git_stream-2.0.2 → git_stream-2.0.3}/vjer.yml +0 -0
|
@@ -7,13 +7,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
7
7
|
|
|
8
8
|
## Current Release
|
|
9
9
|
|
|
10
|
-
### [2.0.
|
|
10
|
+
### [2.0.3] - 2026-02-10
|
|
11
11
|
|
|
12
12
|
- Changed
|
|
13
|
-
-
|
|
13
|
+
- Updated build dependencies. (GitHub #5)
|
|
14
14
|
|
|
15
15
|
## Release History
|
|
16
16
|
|
|
17
|
+
### [2.0.2] - 2025-06-23
|
|
18
|
+
|
|
19
|
+
- Changed
|
|
20
|
+
- Fixed stream path when repo name starts with a period. (GitHub #4)
|
|
21
|
+
|
|
17
22
|
### [2.0.1] - 2025-02-16
|
|
18
23
|
|
|
19
24
|
- Changed
|
|
@@ -35,7 +35,7 @@ This is the procedure for releasing git-stream
|
|
|
35
35
|
1. Run the Publish workflow against the Production environment.
|
|
36
36
|
1. Validate the GitHub release and tag.
|
|
37
37
|
1. Validate PyPi was published properly.
|
|
38
|
-
1. Label the issues as res::complete and mark as "
|
|
38
|
+
1. Label the issues as res::complete and mark as "Completed".
|
|
39
39
|
1. Close the Milestone.
|
|
40
40
|
1. Update the source in Perforce.
|
|
41
41
|
1. If this was a release branch, merge to master.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
[build-system]
|
|
2
|
-
requires = ["setuptools >=
|
|
2
|
+
requires = ["setuptools >= 82.0"]
|
|
3
3
|
build-backend = "setuptools.build_meta"
|
|
4
4
|
|
|
5
5
|
[project]
|
|
@@ -72,7 +72,7 @@ module = "dotmap.*"
|
|
|
72
72
|
ignore_missing_imports = true
|
|
73
73
|
|
|
74
74
|
[tool.bumpver]
|
|
75
|
-
current_version = "2.0.
|
|
75
|
+
current_version = "2.0.3"
|
|
76
76
|
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
|
|
77
77
|
commit_message = "bump version {old_version} -> {new_version} [skip ci]"
|
|
78
78
|
commit = true
|
|
@@ -19,7 +19,7 @@ entry_points = \
|
|
|
19
19
|
{'console_scripts': ['git-stream = git_stream.__main__:main']}
|
|
20
20
|
|
|
21
21
|
setup(name='git-stream',
|
|
22
|
-
version='2.0.
|
|
22
|
+
version='2.0.3',
|
|
23
23
|
description='Git Stream Implementation',
|
|
24
24
|
author=None,
|
|
25
25
|
author_email='"Jeffery G. Smith" <web@pobox.com>',
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|