Skip to content

Commit

Permalink
fix distname subbed into release notes (include ostag)
Browse files Browse the repository at this point in the history
  • Loading branch information
wpbonelli committed Jun 30, 2023
1 parent 51cce04 commit eba830a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion distribution/update_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def update_meson_build(version: Version):
def update_version_tex(version: Version, timestamp: datetime):
path = project_root_path / "doc" / "version.tex"
with open(path, "w") as f:
line = "\\newcommand{\\modflowversion}{mf" + f"{str(version)}" + "}"
line = "\\newcommand{\\modflowversion}{mf" + str(version) + "\\_[ostag]}"
f.write(f"{line}\n")
line = (
"\\newcommand{\\modflowdate}{" + f"{timestamp.strftime('%B %d, %Y')}" + "}"
Expand Down
2 changes: 1 addition & 1 deletion doc/ReleaseNotes/ReleaseNotes.tex
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ \section{Distribution File}
% folder structured created by python script
\input{folder_struct.tex}

It is recommended that no user files are kept in the \modflowversion~directory structure. If you do plan to put your own files in the \modflowversion~directory structure, do so only by creating additional subdirectories.
It is recommended that no user files are kept in the release directory. If you do plan to put your own files in the release directory, do so only by creating additional subdirectories.

% -------------------------------------------------
\section{Installation and Execution}
Expand Down

0 comments on commit eba830a

Please sign in to comment.