Skip to content

Commit

Permalink
Release v1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jasursadikov committed Nov 3, 2024
1 parent 0cf3b4c commit a16995f
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 10 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 Jasur Sadikov
Copyright (c) 2024 Jasur Sadikov

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "mud-git"
version = "1.0.1"
version = "1.0.2"
authors = [{ name = "Jasur Sadikov", email = "jasur@sadikoff.com" }]
description = "🗃️ Multi repository git utility. Manage multiple git-repositories simultaneously."
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/mud/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.1"
__version__ = "1.0.2"
3 changes: 1 addition & 2 deletions src/mud/__init__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
#!/usr/bin/env python3

import sys

from mud import utils, settings
from mud.app import App


def run():
try:
utils.settings = settings.Settings(utils.SETTINGS_FILE_NAME)
Expand Down
6 changes: 2 additions & 4 deletions src/mud/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,11 @@
from argparse import ArgumentParser

from mud import config

from mud import utils
from mud.utils import glyphs

from mud.runner import Runner
from mud.styles import *
from mud.commands import *
from mud.runner import Runner
from mud.utils import glyphs


class App:
Expand Down
2 changes: 1 addition & 1 deletion src/mud/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@


class Runner:
_label_color_cache = {}
_label_color_cache = {}1
_current_color_index = 0

def __init__(self, repos):
Expand Down

0 comments on commit a16995f

Please sign in to comment.