mcmu 1.2.0.dev0__tar.gz → 1.2.0.dev1__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.
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.2.0.dev1] - 2026-03-13
4
+
5
+ ### Added
6
+
7
+ * Added a message when a mod is removed
8
+
3
9
  ## [1.2.0.dev0] - 2026-03-13
4
10
 
5
11
  ### Changed
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mcmu
3
- Version: 1.2.0.dev0
3
+ Version: 1.2.0.dev1
4
4
  Summary: A utility to update Minecraft java edition mods from Modrinth
5
5
  Project-URL: homepage, https://github.com/Josiah-Jarvis/MCModUpdater
6
6
  Project-URL: source, https://github.com/Josiah-Jarvis/MCModUpdater/
7
7
  Project-URL: download, https://pypi.org/project/mcmu/#files
8
8
  Project-URL: changelog, https://github.com/Josiah-Jarvis/MCModUpdater/blob/master/CHANGELOG.md
9
- Project-URL: releasenotes, https://github.com/Josiah-Jarvis/MCModUpdater/compare/1.1.1...1.2.0.dev0
9
+ Project-URL: releasenotes, https://github.com/Josiah-Jarvis/MCModUpdater/compare/1.2.0.dev0...1.2.0.dev1
10
10
  Project-URL: documentation, https://github.com/Josiah-Jarvis/MCModUpdater/blob/master/README.md
11
11
  Project-URL: issues, https://github.com/Josiah-Jarvis/MCModUpdater/issues
12
12
  Author: Josiah Jarvis
@@ -56,7 +56,7 @@ homepage = "https://github.com/Josiah-Jarvis/MCModUpdater"
56
56
  source = "https://github.com/Josiah-Jarvis/MCModUpdater/"
57
57
  download = "https://pypi.org/project/mcmu/#files"
58
58
  changelog = "https://github.com/Josiah-Jarvis/MCModUpdater/blob/master/CHANGELOG.md"
59
- releasenotes = "https://github.com/Josiah-Jarvis/MCModUpdater/compare/1.1.1...1.2.0.dev0" # Change before every release
59
+ releasenotes = "https://github.com/Josiah-Jarvis/MCModUpdater/compare/1.2.0.dev0...1.2.0.dev1" # Change before every release
60
60
  documentation = "https://github.com/Josiah-Jarvis/MCModUpdater/blob/master/README.md"
61
61
  issues = "https://github.com/Josiah-Jarvis/MCModUpdater/issues"
62
62
 
@@ -8,7 +8,7 @@ from logging import getLogger, basicConfig
8
8
  from argparse import ArgumentParser
9
9
  from .minecraft_mod import Mod # Mod function import
10
10
 
11
- __version__ = "1.2.0.dev0"
11
+ __version__ = "1.2.0.dev1"
12
12
  __author__ = "Josiah Jarvis"
13
13
 
14
14
  logger = getLogger(__name__)
@@ -102,6 +102,7 @@ def main():
102
102
  del config['mods'][args.remove]
103
103
  if not write_config_file(config_file, config):
104
104
  return 1
105
+ print(f"Mod: {args.remove}, successfully removed")
105
106
  elif args.list:
106
107
  for mod in config['mods']:
107
108
  print(f"{config['mods'][mod]['name']}\n\tVersion: {config['mods'][mod]['version']}\n\tFile: {config['mods'][mod]['file']}")
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