Skip to content

Commit

Permalink
Step release tag
Browse files Browse the repository at this point in the history
  • Loading branch information
josephwright committed Oct 8, 2024
1 parent d67c055 commit 08dcb8b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ this project uses date-based 'snapshot' version identifiers.

## [Unreleased]

## [2024-10-08]

### Fixed
- Test for uncompleted conditionals in tests (may require `.tlg` update)
- Global `typesetopts` no longer ignored for `luatex` and `lualatex` (issue \#351)
- Handling of spaces in options

Expand Down Expand Up @@ -789,7 +792,8 @@ this project uses date-based 'snapshot' version identifiers.
- Rationalise short option names: removed `-d`, `-E`, `-r`
- Target `cmdcheck`: specific to LaTeX kernel work

[Unreleased]: https://github.com/latex3/l3build/compare/2024-05-27...HEAD
[Unreleased]: https://github.com/latex3/l3build/compare/2024-10-08...HEAD
[2024-10-08]: https://github.com/latex3/l3build/compare/2024-05-27...2024-10-08
[2024-05-27]: https://github.com/latex3/l3build/compare/2024-02-08...2024-05-27
[2024-02-08]: https://github.com/latex3/l3build/compare/2024-01-18...2024-02-08
[2024-01-18]: https://github.com/latex3/l3build/compare/2024-01-09...2024-01-18
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
l3build: a testing and building system for LaTeX
=================================================

Release 2024-05-27
Release 2024-10-08

Overview
--------
Expand Down
6 changes: 3 additions & 3 deletions l3build.dtx
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@
% }^^A
% }
%
% \date{Released 2024-05-27}
% \date{Released 2024-10-08}
%
% \maketitle
% \tableofcontents
Expand Down Expand Up @@ -2305,8 +2305,8 @@
\ifnum\currentgrouplevel>0 %
\LONGTYPEOUT{Bad grouping: \the\currentgrouplevel!}%
\fi
\ifnum\currentiflevel>2 %
\LONGTYPEOUT{Bad conditionals: \the\numexpr\currentiflevel-2!}%
\ifnum\currentiflevel>1 %
\LONGTYPEOUT{Bad conditionals: \the\numexpr\currentiflevel-1!}%
\fi
\LONGTYPEOUT{^^JEND-TEST-LOG^^J}%
\@@@end
Expand Down
2 changes: 1 addition & 1 deletion l3build.lua
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ for those people who are interested.
--]]

-- Version information
release_date = "2024-05-27"
release_date = "2024-10-08"

-- File operations are aided by the LuaFileSystem module
local lfs = require("lfs")
Expand Down

0 comments on commit 08dcb8b

Please sign in to comment.