wexample-migration 9.3.0__tar.gz → 9.3.2__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.
Files changed (17) hide show
  1. {wexample_migration-9.3.0 → wexample_migration-9.3.2}/PKG-INFO +6 -6
  2. {wexample_migration-9.3.0 → wexample_migration-9.3.2}/README.md +3 -3
  3. {wexample_migration-9.3.0 → wexample_migration-9.3.2}/pyproject.toml +3 -3
  4. {wexample_migration-9.3.0 → wexample_migration-9.3.2}/src/wexample_migration/__init__.py +0 -0
  5. {wexample_migration-9.3.0 → wexample_migration-9.3.2}/src/wexample_migration/abstract_migration.py +0 -0
  6. {wexample_migration-9.3.0 → wexample_migration-9.3.2}/src/wexample_migration/filestate/__init__.py +0 -0
  7. {wexample_migration-9.3.0 → wexample_migration-9.3.2}/src/wexample_migration/filestate/filestate_item_migration.py +0 -0
  8. {wexample_migration-9.3.0 → wexample_migration-9.3.2}/src/wexample_migration/migration_context.py +0 -0
  9. {wexample_migration-9.3.0 → wexample_migration-9.3.2}/src/wexample_migration/migration_runner.py +0 -0
  10. {wexample_migration-9.3.0 → wexample_migration-9.3.2}/src/wexample_migration/migration_stamp.py +0 -0
  11. {wexample_migration-9.3.0 → wexample_migration-9.3.2}/src/wexample_migration/py.typed +0 -0
  12. {wexample_migration-9.3.0 → wexample_migration-9.3.2}/src/wexample_migration/workdir/__init__.py +0 -0
  13. {wexample_migration-9.3.0 → wexample_migration-9.3.2}/src/wexample_migration/workdir/mixin/__init__.py +0 -0
  14. {wexample_migration-9.3.0 → wexample_migration-9.3.2}/src/wexample_migration/workdir/mixin/with_migration_workdir_mixin.py +0 -0
  15. {wexample_migration-9.3.0 → wexample_migration-9.3.2}/tests/test_filestate_item_migration.py +0 -0
  16. {wexample_migration-9.3.0 → wexample_migration-9.3.2}/tests/test_migration_rollback.py +0 -0
  17. {wexample_migration-9.3.0 → wexample_migration-9.3.2}/tests/test_migration_runner.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: wexample-migration
3
- Version: 9.3.0
3
+ Version: 9.3.2
4
4
  Author-Email: weeger <contact@wexample.com>
5
5
  License: MIT
6
6
  Classifier: Programming Language :: Python :: 3
@@ -10,8 +10,8 @@ Requires-Python: >=3.10
10
10
  Requires-Dist: attrs>=23.1.0
11
11
  Requires-Dist: cattrs>=23.1.0
12
12
  Requires-Dist: pyyaml>=6.0
13
- Requires-Dist: wexample-filestate>=11.1.0
14
- Requires-Dist: wexample-helpers>=13.0.0
13
+ Requires-Dist: wexample-filestate>=11.2.0
14
+ Requires-Dist: wexample-helpers>=13.1.0
15
15
  Provides-Extra: dev
16
16
  Requires-Dist: pytest; extra == "dev"
17
17
  Requires-Dist: pytest-cov; extra == "dev"
@@ -21,7 +21,7 @@ Description-Content-Type: text/markdown
21
21
 
22
22
  # migration
23
23
 
24
- Version: 9.3.0
24
+ Version: 9.3.2
25
25
 
26
26
  ## Table of Contents
27
27
 
@@ -102,8 +102,8 @@ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the comp
102
102
  - attrs: >=23.1.0
103
103
  - cattrs: >=23.1.0
104
104
  - pyyaml: >=6.0
105
- - wexample-filestate: >=11.1.0
106
- - wexample-helpers: >=13.0.0
105
+ - wexample-filestate: >=11.2.0
106
+ - wexample-helpers: >=13.1.0
107
107
 
108
108
  ## Versioning & Compatibility Policy
109
109
 
@@ -1,6 +1,6 @@
1
1
  # migration
2
2
 
3
- Version: 9.3.0
3
+ Version: 9.3.2
4
4
 
5
5
  ## Table of Contents
6
6
 
@@ -81,8 +81,8 @@ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the comp
81
81
  - attrs: >=23.1.0
82
82
  - cattrs: >=23.1.0
83
83
  - pyyaml: >=6.0
84
- - wexample-filestate: >=11.1.0
85
- - wexample-helpers: >=13.0.0
84
+ - wexample-filestate: >=11.2.0
85
+ - wexample-helpers: >=13.1.0
86
86
 
87
87
  ## Versioning & Compatibility Policy
88
88
 
@@ -6,7 +6,7 @@ build-backend = "pdm.backend"
6
6
 
7
7
  [project]
8
8
  name = "wexample-migration"
9
- version = "9.3.0"
9
+ version = "9.3.2"
10
10
  authors = [
11
11
  { name = "weeger", email = "contact@wexample.com" },
12
12
  ]
@@ -20,8 +20,8 @@ dependencies = [
20
20
  "attrs>=23.1.0",
21
21
  "cattrs>=23.1.0",
22
22
  "pyyaml>=6.0",
23
- "wexample-filestate>=11.1.0",
24
- "wexample-helpers>=13.0.0",
23
+ "wexample-filestate>=11.2.0",
24
+ "wexample-helpers>=13.1.0",
25
25
  ]
26
26
 
27
27
  [project.readme]