Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also .

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also .
base repository: latex3/l3build
base: 2020-03-12
head repository: latex3/l3build
compare: 2020-03-13
  • 3 commits
  • 8 files changed
  • 0 comments
  • 1 contributor
Showing with 16 additions and 7 deletions.
  1. +7 −1 CHANGELOG.md
  2. +1 −1 README.md
  3. +3 −1 l3build-check.lua
  4. +1 −1 l3build-install.lua
  5. +1 −1 l3build.1
  6. +1 −1 l3build.dtx
  7. +1 −1 l3build.lua
  8. +1 −0 testfiles-pdf/00-test-2.tpf
@@ -7,6 +7,11 @@ this project uses date-based 'snapshot' version identifiers.

## [Unreleased]

## [2020-03-13]

### Changed
- Refinement of PDF test normalisation

## [2020-03-12]

### Added
@@ -447,7 +452,8 @@ this project uses date-based 'snapshot' version identifiers.
- Rationalise short option names: removed `-d`, `-E`, `-r`
- Target `cmdcheck`: specific to LaTeX3 kernel work

[Unreleased]: https://github.com/latex3/l3build/compare/2020-03-12...HEAD
[Unreleased]: https://github.com/latex3/l3build/compare/2020-03-13...HEAD
[2020-03-13]: https://github.com/latex3/l3build/compare/2020-03-12...2020-03-13
[2020-03-12]: https://github.com/latex3/l3build/compare/2020-02-21...2020-03-12
[2020-02-21]: https://github.com/latex3/l3build/compare/2020-02-17...2020-02-21
[2020-02-17]: https://github.com/latex3/l3build/compare/2020-02-03...2020-02-17
@@ -1,7 +1,7 @@
l3build: a testing and building system for LaTeX3
=================================================

Release 2020-03-12
Release 2020-03-13

Overview
--------
@@ -537,7 +537,9 @@ local function normalize_pdf(content)
binary = false
stream = true
stream_content = "stream" .. os_newline
elseif not match(line, "^ *$") and not match(line,"^%%%%") then
elseif not match(line, "^ *$") and
not match(line,"^%%%%Invocation") and
not match(line,"^%%%%%+") then
line = gsub(line,"%/ID %[<[^>]+><[^>]+>]","/ID [<ID-STRING><ID-STRING>]")
new_content = new_content .. line .. os_newline
end
@@ -1,6 +1,6 @@
--[[
File l3build-install.lua Copyright (C) 2018,2019 The LaTeX3 Project
File l3build-install.lua Copyright (C) 2018-2020 The LaTeX3 Project
It may be distributed and/or modified under the conditions of the
LaTeX Project Public License (LPPL), either version 1.3c of this
@@ -1,4 +1,4 @@
.TH l3build 1 "2020-03-12"
.TH l3build 1 "2020-03-13"
.SH NAME
l3build \- Checking and building packages
.SH SYNOPSIS
@@ -234,7 +234,7 @@
% }^^A
% }
%
% \date{Released 2020-03-12}
% \date{Released 2020-03-13}
%
% \maketitle
% \tableofcontents
@@ -25,7 +25,7 @@ for those people who are interested.
--]]

-- Version information
release_date = "2020-03-12"
release_date = "2020-03-13"

-- File operations are aided by the LuaFileSystem module
local lfs = require("lfs")
@@ -104,3 +104,4 @@ trailer
>>
startxref
9503
%%EOF

No commit comments for this range