Skip to content

Commit

Permalink
Synchronize the version numbers in different files
Browse files Browse the repository at this point in the history
  • Loading branch information
mquinson committed Sep 5, 2024
1 parent f71f50c commit f077625
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Please keep the version number synchronized in Makefile

version 0.3.2: Allow to use docker as the virtualization tool
- Thanks to mwalp for the patch.

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=0.3
VERSION=0.3.2
all:
./compiler.py
@cd exo; for f in `find -name '*.list'` ; do echo "Copying $$f over"; cp $$f ../site/$$f ; done
Expand Down
3 changes: 2 additions & 1 deletion compiler.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#! /usr/bin/python3

"""
2023 (C) Martin Quinson.
2023-2024 (C) Martin Quinson.
This file is distributed as GPL v3+.
"""
Expand Down Expand Up @@ -119,6 +119,7 @@ def compile_sharin(outfile_name: str, sharin_name:str, script_template: str) ->

render_html(f"{outfile}html", f.read())

# Compile the sharin scripts
print("-" * 50 + "\nCompile the sharin scripts\n")
for file_name in sorted(Path('exo').rglob('*.sharin')):
if not file_name.name.startswith('.#'): # Pass emacs temp files
Expand Down

0 comments on commit f077625

Please sign in to comment.