mapfile-parser 2.5.0__tar.gz → 2.5.1__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.
- {mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/CHANGELOG.md +7 -0
- {mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/Cargo.lock +1 -1
- {mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/Cargo.toml +1 -1
- {mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/PKG-INFO +3 -3
- {mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/README.md +2 -2
- {mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/pyproject.toml +1 -1
- {mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/src/mapfile_parser/__init__.py +1 -1
- {mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/.gitattributes +0 -0
- {mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/.gitignore +0 -0
- {mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/LICENSE +0 -0
- {mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/src/mapfile_parser/__main__.py +0 -0
- {mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/src/mapfile_parser/frontends/__init__.py +0 -0
- {mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/src/mapfile_parser/frontends/bss_check.py +0 -0
- {mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/src/mapfile_parser/frontends/first_diff.py +0 -0
- {mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/src/mapfile_parser/frontends/jsonify.py +0 -0
- {mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/src/mapfile_parser/frontends/pj64_syms.py +0 -0
- {mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/src/mapfile_parser/frontends/progress.py +0 -0
- {mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/src/mapfile_parser/frontends/sym_info.py +0 -0
- {mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/src/mapfile_parser/frontends/symbol_sizes_csv.py +0 -0
- {mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/src/mapfile_parser/frontends/upload_frogress.py +0 -0
- {mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/src/mapfile_parser/mapfile.py +0 -0
- {mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/src/mapfile_parser/mapfile_parser.pyi +0 -0
- {mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/src/mapfile_parser/mapfile_rs.py +0 -0
- {mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/src/mapfile_parser/progress_stats.py +0 -0
- {mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/src/mapfile_parser/progress_stats_rs.py +0 -0
- {mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/src/mapfile_parser/utils.py +0 -0
- {mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/src/rs/file.rs +0 -0
- {mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/src/rs/found_symbol_info.rs +0 -0
- {mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/src/rs/lib.rs +0 -0
- {mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/src/rs/mapfile.rs +0 -0
- {mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/src/rs/maps_comparison_info.rs +0 -0
- {mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/src/rs/progress_stats.rs +0 -0
- {mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/src/rs/segment.rs +0 -0
- {mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/src/rs/symbol.rs +0 -0
- {mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/src/rs/symbol_comparison_info.rs +0 -0
- {mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/src/rs/utils.rs +0 -0
|
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [2.5.1] - 2024-08-09
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- Fix Github Action file.
|
|
15
|
+
|
|
10
16
|
## [2.5.0] - 2024-08-09
|
|
11
17
|
|
|
12
18
|
### Added
|
|
@@ -366,6 +372,7 @@ Full changes: <https://github.com/Decompollaborate/mapfile_parser/compare/702a73
|
|
|
366
372
|
- Initial release
|
|
367
373
|
|
|
368
374
|
[unreleased]: https://github.com/Decompollaborate/mapfile_parser/compare/master...develop
|
|
375
|
+
[2.5.1]: https://github.com/Decompollaborate/mapfile_parser/compare/2.5.0...2.5.1
|
|
369
376
|
[2.5.0]: https://github.com/Decompollaborate/mapfile_parser/compare/2.4.0...2.5.0
|
|
370
377
|
[2.4.0]: https://github.com/Decompollaborate/mapfile_parser/compare/2.3.7...2.4.0
|
|
371
378
|
[2.3.7]: https://github.com/Decompollaborate/mapfile_parser/compare/2.3.6...2.3.7
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: mapfile_parser
|
|
3
|
-
Version: 2.5.
|
|
3
|
+
Version: 2.5.1
|
|
4
4
|
Classifier: Programming Language :: Rust
|
|
5
5
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
6
6
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
@@ -53,7 +53,7 @@ If you use a `requirements.txt` file in your repository, then you can add
|
|
|
53
53
|
this library with the following line:
|
|
54
54
|
|
|
55
55
|
```txt
|
|
56
|
-
mapfile_parser>=2.5.
|
|
56
|
+
mapfile_parser>=2.5.1,<3.0.0
|
|
57
57
|
```
|
|
58
58
|
|
|
59
59
|
#### Development version
|
|
@@ -92,7 +92,7 @@ cargo add mapfile_parser
|
|
|
92
92
|
Or add the following line manually to your `Cargo.toml` file:
|
|
93
93
|
|
|
94
94
|
```toml
|
|
95
|
-
mapfile_parser = "2.5.
|
|
95
|
+
mapfile_parser = "2.5.1"
|
|
96
96
|
```
|
|
97
97
|
|
|
98
98
|
## Versioning and changelog
|
|
@@ -35,7 +35,7 @@ If you use a `requirements.txt` file in your repository, then you can add
|
|
|
35
35
|
this library with the following line:
|
|
36
36
|
|
|
37
37
|
```txt
|
|
38
|
-
mapfile_parser>=2.5.
|
|
38
|
+
mapfile_parser>=2.5.1,<3.0.0
|
|
39
39
|
```
|
|
40
40
|
|
|
41
41
|
#### Development version
|
|
@@ -74,7 +74,7 @@ cargo add mapfile_parser
|
|
|
74
74
|
Or add the following line manually to your `Cargo.toml` file:
|
|
75
75
|
|
|
76
76
|
```toml
|
|
77
|
-
mapfile_parser = "2.5.
|
|
77
|
+
mapfile_parser = "2.5.1"
|
|
78
78
|
```
|
|
79
79
|
|
|
80
80
|
## Versioning and changelog
|
|
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
|
{mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/src/mapfile_parser/frontends/symbol_sizes_csv.py
RENAMED
|
File without changes
|
{mapfile_parser-2.5.0 → mapfile_parser-2.5.1}/src/mapfile_parser/frontends/upload_frogress.py
RENAMED
|
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
|