Skip to content

Commit 0c1d23d

Browse files
author
Claudio André
committed
release: deliver a new 1.9.1-dev tarball file
Define RELEASE_BUILD and make a short announcement about it. Signed-off-by: Claudio André <[email protected]>
1 parent c0732ec commit 0c1d23d

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

doc/CHANGES

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
Major changes from 1.9.0-jumbo-1 (May 2019) to 1.9.1-dev (July 2024):
2+
3+
- The development team now prioritizes code quality improvements and
4+
issues resolution. So, they brought to you a lot of relevant major changes:
5+
6+
- Optimizations, improvements, and fixes everywhere.
7+
8+
This is a bug fix, renovate, and update release intended to provide a
9+
modernized version to end users and packagers. "Early and Often".
10+
111
The following changes have been made between John 1.9.0 and 1.9.1-dev:
212

313
* Let "--node" numbers range be any multiple of "--fork" process count.

src/Makefile.legacy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ OMPFLAGS =
5757
#ICCOMPFLAGS = -openmp
5858

5959
# This should be commented out in Git but active in release tarballs
60-
#RELEASE_BLD = -DJTR_RELEASE_BUILD
60+
RELEASE_BLD = -DJTR_RELEASE_BUILD
6161

6262
# Try to auto-detect GMP libs. The grep is needed in case some of the
6363
# paths does not exist, because find will return false even though finding a

src/params.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of John the Ripper password cracker,
3-
* Copyright (c) 1996-2019 by Solar Designer
3+
* Copyright (c) 1996-2024 by Solar Designer
44
*
55
* ...with changes in the jumbo patch, by various authors
66
*
@@ -26,19 +26,19 @@
2626
/*
2727
* John's version number.
2828
*/
29-
#define JOHN_VERSION "1.9.0"
29+
#define JOHN_VERSION "1.9.1"
3030

3131
/*
3232
* Define this for release tarballs. It affects the version reporting (will
3333
* be the string above and below and never a Git hash).
3434
*/
35-
//#define JTR_RELEASE_BUILD 1
35+
#define JTR_RELEASE_BUILD 1
3636

3737
/*
3838
* Jumbo's version number. Note that we must uncomment JTR_RELEASE_BUILD
3939
* above, in any release tar-balls (and only then, never ever in Git).
4040
*/
41-
#define JUMBO_POSTFIX "-jumbo-1"
41+
#define JUMBO_POSTFIX "-dev"
4242

4343
#if JTR_RELEASE_BUILD
4444
#define JUMBO_VERSION JOHN_VERSION JUMBO_POSTFIX

0 commit comments

Comments
 (0)