Skip to content

Commit

Permalink
Merge pull request #203 from baloise/dependabot/pip/pymdown-extension…
Browse files Browse the repository at this point in the history
…s-10.0

build(deps): bump pymdown-extensions from 9.4 to 10.0
  • Loading branch information
christiansiegel authored Jul 13, 2023
2 parents dcd1184 + 06a205d commit e2aca1e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .releaserc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins:
- - "@google/semantic-release-replace-plugin"
- replacements:
- files: [ "setup.py "]
from: "version=\"UNRELEASED\""
from: "version=\"0.0.0\""
to: "version=\"${nextRelease.version}\""
countMatches: true
results:
Expand Down
2 changes: 1 addition & 1 deletion requirements-docs.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
mkdocs==1.3.0
mkdocs-material==8.2.12
markdown-include==0.6.0
pymdown-extensions==9.4
pymdown-extensions==10.0
Markdown==3.3.7
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="gitopscli",
version="UNRELEASED",
version="0.0.0",
packages=find_packages(),
entry_points={"console_scripts": ["gitopscli = gitopscli.__main__:main"]},
setup_requires=["wheel"],
Expand Down
2 changes: 1 addition & 1 deletion tests/commands/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ class VersionCommandTest(unittest.TestCase):
def test_output(self):
with captured_output() as stdout:
VersionCommand(VersionCommand.Args()).execute()
assert re.match(r"^GitOps CLI version (?:\d+\.\d+\.\d+|UNRELEASED)\n$", stdout.getvalue())
assert re.match(r"^GitOps CLI version \d+\.\d+\.\d+\n$", stdout.getvalue())

0 comments on commit e2aca1e

Please sign in to comment.