Skip to content

Commit

Permalink
Prepare release=3.1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
reijoh committed Mar 22, 2024
1 parent a5ea69a commit 2c3e588
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ $(foreach img,$(image_stacks),$(eval $(call stack,$(img))))
freeze-file: $(STACK)/$(stack_freeze_file)
%/$(stack_freeze_file): STACK = $*
%/$(stack_freeze_file):
./build.sh build -v \
./build.sh build -v -f \
-r "$(STACK)-builder-base" \
-s "$(STACK)" \
-c "$(PANDOC_COMMIT)" \
Expand Down
11 changes: 11 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ fi
# shellcheck disable=SC2086
set -- $args

create_freeze=
directory=.
pandoc_commit=main
repo=core
Expand All @@ -40,6 +41,10 @@ while true; do
directory="${2}"
shift 2
;;
(-f)
create_freeze='true'
shift 1
;;
(-r)
repo="${2}"
shift 2
Expand Down Expand Up @@ -96,6 +101,12 @@ if [ -z "$pandoc_version_opts" ]; then
exit 1
fi

freeze_file="${directory}/${stack}/freeze/pandoc-$pandoc_commit.project.freeze"
if [ "$pandoc_commit" != "main" ] && [ ! -f "$freeze_file" ] && [ -z "$create_freeze" ]; then
printf 'Freeze file not found: %s\n' "$freeze_file" >&2
exit 1
fi

version_table_field ()
{
printf '%s\n' "$pandoc_version_opts" | \
Expand Down
17 changes: 9 additions & 8 deletions versions.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
| pandoc | tags | Alpine | Ubuntu | TeXLive | Lua |
|----------+-------------------------------+--------+--------+---------+-----|
| main | edge | 3.19.1 | jammy | | 5.4 |
| 3.1.1 | 3.1.1.0 3.1.1 3.1 3 latest | 3.16.4 | jammy | 2022 | 5.4 |
| 3.0.1 | 3.0.1.0 3.0.1 3.0 | 3.16.4 | jammy | 2022 | 5.4 |
| 2.19.2 | 2.19.2.0 2.19.2 2.19 2 | 3.16.4 | jammy | 2022 | 5.3 |
| 2.18 | 2.18.0.0 2.18.0 2.18 | 3.14.8 | focal | 2021 | 5.3 |
| 2.17.1.1 | 2.17.1.1 2.17.1 2.17 | 3.14.8 | focal | 2021 | 5.3 |
| pandoc | tags | Alpine | Ubuntu | TeXLive | Lua |
|----------+----------------------------------+--------+--------+---------+-----|
| main | edge | 3.19.1 | jammy | | 5.4 |
| 3.1.12 | 3.1.12.0 3.1.12 3.12 3 latest | 3.19.1 | jammy | 2024 | 5.4 |
| 3.1.1 | 3.1.1.0 3.1.1 3.1 3 latest | 3.16.4 | jammy | 2022 | 5.4 |
| 3.0.1 | 3.0.1.0 3.0.1 3.0 | 3.16.4 | jammy | 2022 | 5.4 |
| 2.19.2 | 2.19.2.0 2.19.2 2.19 2 | 3.16.4 | jammy | 2022 | 5.3 |
| 2.18 | 2.18.0.0 2.18.0 2.18 | 3.14.8 | focal | 2021 | 5.3 |
| 2.17.1.1 | 2.17.1.1 2.17.1 2.17 | 3.14.8 | focal | 2021 | 5.3 |

0 comments on commit 2c3e588

Please sign in to comment.