changesets 0.2.0__tar.gz → 0.3.0__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.
- {changesets-0.2.0 → changesets-0.3.0}/PKG-INFO +7 -7
- {changesets-0.2.0 → changesets-0.3.0}/pyproject.toml +7 -7
- {changesets-0.2.0 → changesets-0.3.0}/.gitignore +0 -0
- {changesets-0.2.0 → changesets-0.3.0}/.python-version +0 -0
- {changesets-0.2.0 → changesets-0.3.0}/README.md +0 -0
- {changesets-0.2.0 → changesets-0.3.0}/src/changesets/__init__.py +0 -0
- {changesets-0.2.0 → changesets-0.3.0}/src/changesets/py.typed +0 -0
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: changesets
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.0
|
|
4
4
|
Summary: Git-based changelog manager for JavaScript, Python, and Go projects.
|
|
5
5
|
Project-URL: Repository, https://github.com/dworthen/changelog
|
|
6
6
|
Author-email: Derek Worthen <worthend.derek@gmail.com>
|
|
7
7
|
License-Expression: MIT
|
|
8
8
|
Requires-Python: >=3.11
|
|
9
|
-
Requires-Dist: changesets-darwin-arm64==0.
|
|
10
|
-
Requires-Dist: changesets-darwin-x64==0.
|
|
11
|
-
Requires-Dist: changesets-linux-arm64==0.
|
|
12
|
-
Requires-Dist: changesets-linux-x64==0.
|
|
13
|
-
Requires-Dist: changesets-win32-arm64==0.
|
|
14
|
-
Requires-Dist: changesets-win32-x64==0.
|
|
9
|
+
Requires-Dist: changesets-darwin-arm64==0.3.0; sys_platform == 'darwin' and platform_machine == 'arm64'
|
|
10
|
+
Requires-Dist: changesets-darwin-x64==0.3.0; sys_platform == 'darwin' and platform_machine == 'x86_64'
|
|
11
|
+
Requires-Dist: changesets-linux-arm64==0.3.0; sys_platform == 'linux' and platform_machine == 'aarch64'
|
|
12
|
+
Requires-Dist: changesets-linux-x64==0.3.0; sys_platform == 'linux' and platform_machine == 'x86_64'
|
|
13
|
+
Requires-Dist: changesets-win32-arm64==0.3.0; sys_platform == 'win32' and platform_machine == 'ARM64'
|
|
14
|
+
Requires-Dist: changesets-win32-x64==0.3.0; sys_platform == 'win32' and platform_machine == 'AMD64'
|
|
15
15
|
Description-Content-Type: text/markdown
|
|
16
16
|
|
|
17
17
|
# Changelog2
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "changesets"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.3.0"
|
|
4
4
|
description = "Git-based changelog manager for JavaScript, Python, and Go projects."
|
|
5
5
|
license = "MIT"
|
|
6
6
|
readme = "README.md"
|
|
7
7
|
authors = [{ name = "Derek Worthen", email = "worthend.derek@gmail.com" }]
|
|
8
8
|
requires-python = ">=3.11"
|
|
9
9
|
dependencies = [
|
|
10
|
-
"changesets-win32-x64==0.
|
|
11
|
-
"changesets-win32-arm64==0.
|
|
12
|
-
"changesets-linux-x64==0.
|
|
13
|
-
"changesets-linux-arm64==0.
|
|
14
|
-
"changesets-darwin-x64==0.
|
|
15
|
-
"changesets-darwin-arm64==0.
|
|
10
|
+
"changesets-win32-x64==0.3.0; sys_platform == 'win32' and platform_machine == 'AMD64'",
|
|
11
|
+
"changesets-win32-arm64==0.3.0; sys_platform == 'win32' and platform_machine == 'ARM64'",
|
|
12
|
+
"changesets-linux-x64==0.3.0; sys_platform == 'linux' and platform_machine == 'x86_64'",
|
|
13
|
+
"changesets-linux-arm64==0.3.0; sys_platform == 'linux' and platform_machine == 'aarch64'",
|
|
14
|
+
"changesets-darwin-x64==0.3.0; sys_platform == 'darwin' and platform_machine == 'x86_64'",
|
|
15
|
+
"changesets-darwin-arm64==0.3.0; sys_platform == 'darwin' and platform_machine == 'arm64'",
|
|
16
16
|
]
|
|
17
17
|
|
|
18
18
|
[project.urls]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|