Skip to content

Commit f077625

Browse files
committed
Synchronize the version numbers in different files
1 parent f71f50c commit f077625

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

ChangeLog

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Please keep the version number synchronized in Makefile
2+
13
version 0.3.2: Allow to use docker as the virtualization tool
24
- Thanks to mwalp for the patch.
35

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION=0.3
1+
VERSION=0.3.2
22
all:
33
./compiler.py
44
@cd exo; for f in `find -name '*.list'` ; do echo "Copying $$f over"; cp $$f ../site/$$f ; done

compiler.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /usr/bin/python3
22

33
"""
4-
2023 (C) Martin Quinson.
4+
2023-2024 (C) Martin Quinson.
55
66
This file is distributed as GPL v3+.
77
"""
@@ -119,6 +119,7 @@ def compile_sharin(outfile_name: str, sharin_name:str, script_template: str) ->
119119

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

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

0 commit comments

Comments
 (0)