Skip to content

Commit

Permalink
master: check_version.sh: add missing echo_eval function definition.
Browse files Browse the repository at this point in the history
  • Loading branch information
bradbell committed Jul 16, 2024
1 parent 286ef91 commit b6fe34c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions bin/check_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ set -e -u
# SPDX-FileCopyrightText: Bradley M. Bell <[email protected]>
# SPDX-FileContributor: 2020-24 Bradley M. Bell
# -----------------------------------------------------------------------------
# bash function that echos and executes a command
echo_eval() {
echo $*
eval $*
}
# -----------------------------------------------------------------------------
# BEGIN: SECTION THAT DEPENDS ON GIT REPOSITORY
#
# stable_version_file
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ build-backend = 'setuptools.build_meta'
# -----------------------------------------------------------------------------
[project]
name = 'xrst'
version = '2024.7.13'
version = '2024.7.16'
description = 'Extract RST files from source code and run Sphinx'
readme = 'readme.md'
requires-python = '>=3.0'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name = 'xrst',
version = '2024.7.13',
version = '2024.7.16',
description = 'Extract RST files from source code and run Sphinx',
license = 'GPL-3.0-or-later',
keywords = 'sphinx rst documentation source',
Expand Down
2 changes: 1 addition & 1 deletion xrst/run_xrst.py
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ def fix_latex(latex_dir, project_name) :
import xrst
#
# version
version = '2024.7.13'
version = '2024.7.16'
#
def run_xrst() :
#
Expand Down

0 comments on commit b6fe34c

Please sign in to comment.