Skip to content

Commit

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

## [Unreleased]

## [2023-12-13-2]

## [2023-12-13]

### Fixed
Expand Down Expand Up @@ -737,7 +739,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/2023-12-13...HEAD
[Unreleased]: https://github.com/latex3/l3build/compare/2023-12-13-2...HEAD
[2023-12-13-2]: https://github.com/latex3/l3build/compare/2023-12-13...2023-12-13-2
[2023-12-13]: https://github.com/latex3/l3build/compare/2023-12-12...2023-12-13
[2023-12-12]: https://github.com/latex3/l3build/compare/2023-11-01...2023-12-12
[2023-11-01]: https://github.com/latex3/l3build/compare/2023-09-13...2023-11-01
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 2023-12-13
Release 2023-12-13-2

Overview
--------
Expand Down
2 changes: 1 addition & 1 deletion l3build.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH l3build 1 "2023-12-13"
.TH l3build 1 "2023-12-13-2"
.SH NAME
l3build \- Checking and building packages
.SH SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion l3build.dtx
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@
% }^^A
% }
%
% \date{Released 2023-12-13}
% \date{Released 2023-12-13-2}
%
% \maketitle
% \tableofcontents
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 = "2023-12-13"
release_date = "2023-12-13-2"

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

2 comments on commit 1cae1aa

@muzimuzhi
Copy link
Contributor

@muzimuzhi muzimuzhi commented on 1cae1aa Dec 14, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm CTAN is not ready to process this new version pattern YYYY-MM-DD-r, https://ctan.org/pkg/l3build

$ curl https://www.ctan.org/json/2.0/pkg/l3build | jq '{version: .version}'

{
  "version": {
    "number": "-2",
    "date": "2023-12-13"
  }
}

Also to avoid no-entry release, a changelog entry for 8fd5875 (Seems TL relies on the !# line on *nix, 2023-12-13) maybe needed.

@josephwright
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm CTAN is not ready to process this new version pattern YYYY-MM-DD-r, https://ctan.org/pkg/l3build

$ curl https://www.ctan.org/json/2.0/pkg/l3build | jq '{version: .version}'

{
  "version": {
    "number": "-2",
    "date": "2023-12-13"
  }
}

(Hopefully) a one-off ;)

Also to avoid no-entry release, a changelog entry for 8fd5875 (Seems TL relies on the !# line on *nix, 2023-12-13) maybe needed.

I guess :(

Please sign in to comment.