summaryrefslogtreecommitdiff
path: root/patchlevel.h
Commit message (Collapse)AuthorAgeFilesLines
* replace "define\t" with "define " in most "normal" core files.Yves Orton2023-04-291-1/+1
| | | | | | | | | | | | | | | | | | | The main exceptions being dist/, ext/, and Configure related files, which will be updated in a subsequent commit. Files in the cpan/ directory are also omitted as they are not owned by the core. '#define' has seven characters, so following it with a \t makes it look like '#define ' when it is not, which then frustrates attempts to find where a given define is. If you *know* then you do a git grep -P 'define\s+WHATEVER' but if don't or you forget, you can get very confused trying to find where a given define is located. This fixes all such cases so they actually are 'define WHATEVER' instead. If this patch is getting in your way with blame analysis then view it with the -w option to blame.
* Bump version for 5.37.12Steve Hay2023-04-201-2/+2
|
* Bump version to 5.37.11, update Module-CoreListYves Orton2023-03-211-2/+2
| | | | | | | | | | Module-CoreList was synced with CPAN and had its version in Porting/Maintainers.pl updated. Module-CoreList was also updated by running: ./perl -Ilib Porting/corelist.pl cpan With some manual fixups afterwards to make it pass test.
* Bump the perl version in various places for 5.37.10Karen Etheridge2023-02-201-2/+2
|
* bump version for 5.37.9reneeb2023-01-211-2/+2
|
* Bump the perl version in various places for 5.37.8Richard Leach2022-12-201-2/+2
|
* Bump the perl version in various places for 5.37.6Max Maischein2022-11-201-2/+2
|
* Bump the perl version in various places for 5.37.6Todd Rinaldo2022-10-241-2/+2
|
* Bump the perl version in various places for 5.37.5Karen Etheridge2022-09-201-2/+2
|
* patchlevel.h: Adjust embedded script for detabifyBram2022-08-311-2/+3
| | | | | | | | | | | | | | | | | | | patchlevel.h was detabified[^1] and tabs replaced with spaces. It however contains an embedded perl script for updating the `local_patches` list (in patchlevel.h). This no longer worked because it used: /\t,NULL/ (which no longer matches after the detabify) Fix it by using `\s+` (and by capturing it and using it as leading space in the added text). Example of how to run it: $ perl -x patchlevel.h patch_foo patch_bar patch_baz [^1]: in commit 1604cfb0273418ed479719f39def5ee559bffda2
* Bumping perl version in various places for 5.37.4Neil Bowers2022-08-201-2/+2
|
* Bump version to 5.37.3Nicolas R2022-07-211-2/+2
|
* patchlevel.h: White-space only: properly indentKarl Williamson2022-07-111-1/+1
|
* Dump perl version everywhere to 5.37.2Matthew Horsfall2022-06-201-2/+2
| | | | | This attempted to change sv_inline.h, but those were clearly wrong!
* bump version to v5.37.1: now open for businessRicardo Signes2022-05-271-2/+2
|
* bump version to v5.37.0Ricardo Signes2022-05-271-2/+2
|
* patchlevel.h: this is 5.36.0, not a release candidate!Ricardo Signes2022-05-261-1/+0
|
* bump version to v5.36.0 (RC3)v5.36.0-RC3Ricardo Signes2022-05-211-1/+1
|
* prepare perl-v5.36.0 RC2Ricardo Signes2022-05-201-1/+1
| | | | Due to SSL problems on PAUSE, RC1 is unlikely to exist in public.
* bump version to v5.36.0 (RC1)Ricardo Signes2022-05-201-1/+1
|
* bump version to v5.36.0 (RC0)Ricardo Signes2022-05-201-4/+5
|
* Bump version for 5.35.12Steve Hay2022-04-201-2/+2
|
* Bump version for 5.35.11Sawyer X2022-03-201-2/+2
|
* bump version for 5.35.10reneeb2022-02-201-2/+2
|
* Bump the perl version in various places for 5.35.9Nicolas R2022-01-201-2/+2
|
* Bump the perl version in various places for 5.35.8Neil Bowers2021-12-211-2/+2
|
* Bump the perl version in various places for 5.35.7Richard Leach2021-11-211-2/+2
|
* Bump version to 5.35.6Leon Timmermans2021-10-211-2/+2
|
* Bump versions from v5.35.4 to v5.35.5Matthew Horsfall2021-09-201-2/+2
|
* Bump the perl version in various places for 5.35.4Karen Etheridge2021-08-221-2/+2
|
* Bump the perl version in various places ready for 5.35.3Neil Bowers2021-07-241-2/+2
|
* Bump the perl version in various places for 5.35.2Max Maischein2021-06-201-2/+2
|
* Bump the perl version in various places for 5.35.1Max Maischein2021-05-231-2/+2
| | | | | Ideally, this would've been done earlier in the process of developing 5.35, but here we are
* Bump to 5.35.0:Sawyer X2021-05-211-2/+2
| | | | | | * Apparently, first you bump, then you update perldelta. * 5.35.0 *might* be released tomorrow (likely) but not certainly. * I've set it to tomorrow so Module::CoreList won't be upset.
* disarm RC2 bumpSawyer X2021-05-151-1/+0
|
* Bump version to RC2v5.34.0-RC2Sawyer X2021-05-151-0/+1
|
* disarm RC1 bumpSawyer X2021-05-051-1/+0
|
* bump version to RC1Sawyer X2021-05-041-0/+1
|
* Bump perl version in various places for 5.34.0Sawyer X2021-05-041-4/+4
|
* Bump the Perl version to 5.33.9Nicolas R2021-03-201-2/+2
|
* bump version to 5.33.8reneeb2021-02-201-2/+2
|
* Bump version to 5.33.7Richard Leach2021-01-211-2/+2
|
* style: Detabify indentation of the C code maintained by the core.Michael G. Schwern2021-01-171-43/+43
| | | | | | | | | | | This just detabifies to get rid of the mixed tab/space indentation. Applying consistent indentation and dealing with other tabs are another issue. Done with `expand -i`. * vutil.* left alone, it's part of version. * Left regen managed files alone for now.
* Bump version to 5.33.6Max Maischein2020-12-201-2/+2
|
* Bump version to 5.33.5Tom Hukins2020-11-201-2/+2
|
* autodoc.pl: Specify scn for single-purpose filesKarl Williamson2020-11-061-2/+0
| | | | | | | | Many of the files in perl are for one thing only, and hence their embedded documentation will be for that one thing. By creating a hash here of them, those files don't have to worry about what section that documentation goes under, and so it can be completely changed without affecting them.
* Bump version to 5.33.4Steve Hay2020-10-201-2/+2
|
* Bump the perl version in various places for 5.33.3Sawyer X2020-09-211-2/+2
|
* Reorganize perlapiKarl Williamson2020-09-041-1/+1
| | | | | This uses a new organization of sections that I came up with. I asked for comments on p5p, but there were none.
* Bump the perl version in various places for 5.33.2Karen Etheridge2020-08-201-2/+2
|