Skip to content

Commit

Permalink
Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
nwiltsie committed Jul 30, 2024
1 parent 21178b8 commit beb5ca0
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions bumpchanges/getversion.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
"Get the next tag version."

from pathlib import Path
import os
import subprocess

from logging import getLogger
from pathlib import Path

import semver

from .logging import setup_logging


def get_next_version():
"Return the next tag after the appropriate bump type."
logger = setup_logging()
setup_logging()
logger = getLogger(__name__)
repo_dir = os.environ["REPO_DIR"]
bump_type = os.environ["BUMP_TYPE"]
exact_version = os.environ["EXACT_VERSION"]
Expand Down

0 comments on commit beb5ca0

Please sign in to comment.